Ask Your Question
0

I am trying to solve recurring deposite equation but answer is another equation,please help

asked 2013-06-01 06:31:31 +0200

sagesup gravatar image

Following is the problem I am trying to solve


x = var('x')
solve(10000*(1+(0.0825/4))^(x*4)==400000,x)
 

but instead of value of x I am getting


[1633^x == I*40^(1/4)*1600^x, 1633^x == -40^(1/4)*1600^x, 1633^x == -I*40^(1/4)*1600^x, 1633^x == 40^(1/4)*1600^x]
 

Please advise how to solve this!

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2013-06-01 07:36:39 +0200

tmonteil gravatar image

updated 2013-06-01 07:37:47 +0200

What kind of solution do you need (symbolic, numerical, real, complex, ...) ?

If you want a numerical approximation of the unique real solution, you ca try:

sage: f(x) = 10000*(1+(0.0825/4))^(x*4) - 400000
sage: f.find_root(40,50)
45.17323135481834
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

Stats

Asked: 2013-06-01 06:31:31 +0200

Seen: 280 times

Last updated: Jun 01 '13