Ask Your Question
3

why can't sage solve the equation x^n == 2*x ?

asked 11 years ago

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

sage: var('x n')
(x, n)
sage: solve(x^n==2*x,x)
[x == 1/2*x^n]

This is not what I expect.

Who can help?

Thanks.

Preview: (hide)

Comments

One issue here is that after declaring that x and n are symbolic variables, Sage still does not know anything more than that about x and n. So, Sage does not know whether x and n are reals, integers, etc. Thus, we need to `assume(n,'integer')` and `assume(x,'real')`. Unfortunately, at this point, you still don't get a solution. Sage is calling Maxima to solve this equation, and I cannot get Maxima to solve it either. Ideas?

calc314 gravatar imagecalc314 ( 11 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 10 years ago

rws gravatar image

updated 10 years ago

Since you named one variable n I assume you meant integer. But even this has infinitely many solutions! Sage can give them for specific n:

sage: [solve(x^n==2*x,x) for n in range(1,5)]
[[x == 0],
 [x == 0, x == 2],
 [x == -sqrt(2), x == sqrt(2), x == 0],
 [x == 1/2*I*sqrt(3)*2^(1/3) - 1/2*2^(1/3), x == -1/2*I*sqrt(3)*2^(1/3) - 1/2*2^(1/3), x == 2^(1/3), x == 0]]
Preview: (hide)
link

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

Seen: 615 times

Last updated: Jun 30 '14