So I setdefine a function f[x]$f(x)$ as
f[x_] := x*E^(x*Exp[-x)x] - 0.1606416064; Then I set a variable 'actualroot'actualroot to the function FindRootFindRoot, starting at 3$x=3$
actualroot = FindRoot[ f[x]FindRoot[f[x], {x, 3} ] and get the output
{x -> 2.88976} Later, I want to compare this output with a different estimate (-2.88673$x\approx -2.88673$) of the root, and calculate error, so I have
Abs[ (actualroot - estimateroot)/actualroot ]actualroot] and iI get this output:
Abs[ (-2.88673 + (x -> 2.88976))/(x -> 2.88976) ] How do I get mathematicaMathematica to evaluate this expression? I also tried using N[]N[] function to give me a decimal evaluation, but it didn't work.