Ask Your Question
0

Problems with sage solve.

asked 8 years ago

MaAnUu gravatar image

So I have this equation:

eq = 20000 * 1.02^x + 200 * (1 - 1.02^x) / (1 - 1.02) == 30000

And sage gives me this solution with solve(eq, x):

[51^x=4/3⋅50^x]

Why doesnt it give me just the x value?

Please help, thanks.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 8 years ago

ndomes gravatar image
eq = 20000 * 1.02^x + 200 * (1 - 1.02^x) / (1 - 1.02) == 30000
eq2 = solve(eq,x)[0]
solve(log(eq2).canonicalize_radical(),x)
Preview: (hide)
link

Comments

I don't understand the answer. Could you be more explicit, please? I'm having a similar problem:

sage: f=4.94 * 1.062^x

sage: solve(f(x) == 15, x)

[531^x == 750/247*500^x]

Ross1856 gravatar imageRoss1856 ( 8 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: 8 years ago

Seen: 375 times

Last updated: May 01 '17