Sorry, this content is no longer available

Ask Your Question
1

wrong answer from solve?

asked 9 years ago

beeson gravatar image
var('t')
test3 = -4*cos(t)^4 + 4*cos(t)^2 - 1
sage: solve(test3==0,t)
[]

When actually the equation is equivalent to (cos(t))^2 = 1/2 and it does have solutions.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 9 years ago

kcrisman gravatar image
sage: solve(test3==0,t,to_poly_solve=True)
[t == 1/4*pi + 1/2*pi*z35]

You do have to read the documentation of solve? to see this option. It's not default because sometimes it will not return exact solutions.

Preview: (hide)
link

Comments

So then, if solve returns [], that does not mean "there are no solutions". It means, "I didn't find any solutions". Similarly, if it does return a list of solutions, I guess that means "Here are the solutions I found", rather than, "Here are all the solutions." If this is the case, the documentation should say so up front. It says, "if there are no solutions it returns an empty list" but says nothing about the converse.

beeson gravatar imagebeeson ( 9 years ago )

I think it does say something along these lines when it talks about to_poly_solve, but we would welcome specific suggestions for how to improve the documentation, for sure!

kcrisman gravatar imagekcrisman ( 9 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: 9 years ago

Seen: 834 times

Last updated: Jan 22 '16