I'm trying to using sympy find the intersection of two functions. See below code.
import sympy
x = sympy.symbols('x')
f_x = x**-0.5
g_x = -1*sympy.log(0.1+x**-0.5, 10)
sol = sympy.solve(f_x - g_x, x)
num = float(sol[0])
print(num)
When I run this code, Python tells me there's no algebraic solution which is fine.
When I try to use nsolve, I have no luck either: "Cannot create mpf from x".
Can anyone assist me in using Python to solve this problem?