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
asked 2023-03-23 17:37:19 +0100
Anonymous
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$.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2023-03-23 17:37:19 +0100
Seen: 172 times
Last updated: Apr 03 '23