Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
0

How to find the intercept between curve and line

asked 2 years ago

anonymous user

Anonymous

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

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 2 years ago

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.

Preview: (hide)
link

Comments

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

aszanti gravatar imageaszanti ( 2 years ago )

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: 2 years ago

Seen: 200 times

Last updated: Apr 03 '23