Ask Your Question
0

How to find the intercept between curve and line

asked 2023-03-23 17:37:19 +0200

anonymous user

Anonymous

I need to find the point where the curve f(x) = 4-x^6 and the line g(x) = x intercept

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-04-03 15:08:53 +0200

Cyrille gravatar image

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$.

edit flag offensive delete link more

Comments

for i in range(0,5): print(sol[i].rhs())

aszanti gravatar imageaszanti ( 2023-04-03 18:22:03 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2023-03-23 17:37:19 +0200

Seen: 124 times

Last updated: Apr 03 '23