Ask Your Question
0

equation does not simplify due to fractional exponent

asked 2020-07-17 22:41:55 +0200

EconJohn gravatar image

The following equation does not seem to simplify due to the fact there is a fractional power in one of the variables im seeking to solve for. The code I have is:

k=var('k')
solve(k == 50*k^(3/5),k)

Out: [k == 50*k^(3/5)]

is there anyway to fix this?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2020-07-17 23:12:31 +0200

Emmanuel Charpentier gravatar image

As usual with those equation involving exponentials :

sage: solve(k == 50*k^(3/5),k, to_poly_solve=True)
[k == 0, k == 12500*sqrt(2)]
sage: solve(k == 50*k^(3/5),k, algorithm="sympy")
[k == 0, k == 12500*sqrt(2)]
sage: (k==50*k^(3/5)).log().log_expand().solve(k)
[k == 12500*sqrt(2)]

HTH,

edit flag offensive delete link more

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: 2020-07-17 22:41:55 +0200

Seen: 175 times

Last updated: Jul 17 '20