How to find the intercept between curve and line
I need to find the point where the curve f(x) = 4-x^6 and the line g(x) = x intercept
add a comment
I need to find the point where the curve f(x) = 4-x^6 and the line g(x) = x intercept
You can use this
f(x)=4-x^6
g(x)=x
sol=solve(f(x)==g(x),x,to_poly_solve=true)
If you need one of the 6 values you can type
sol[i].rhs()
for i=0,...,5.
for i in range(0,5): print(sol[i].rhs())
Asked: 2 years ago
Seen: 207 times
Last updated: Apr 03 '23