it seems that wxMaxima normally can't solve this simple irrational equation: 10=x-2*sqrt(x)
Here's my input and output:
(%i1) f1(x):= x-2*sqrt(x)$
(%i1) solve(f1(x)=10, x);
(%o1) x=2sqrt(x)+10
I've also tried other ways of solving this but with no luck. And I can't plot this function in Maxima as well.
It's possible to solve and plot it in Wolfram Alpha so maybe there is a way to do it in wxMaxima. Do you know such workaround?
In some very old mailing list archive I came across a hint to use:
part(fundef(f1),2)
and substitute the result back to the original expression but I'm not sure how to do it. Someone also shared a code that can be used to solve irrational equations in Maxima but ufortunately this code is not attached to his reply anymore.