| New Reply |
Finding your annuity, Finding your reverse annuity |
Share Thread |
| Feb26-12, 03:04 AM | #1 |
|
|
Finding your annuity, Finding your reverse annuity
~TLDR at the bottom~
1. The problem statement, all variables and given/known data The Big question: Code:
P=250 R=.005 N=12 T=46 Code:
A1=155123.83 R=.0025 N=12 T=15 Annuity Formula(Given): Code:
A=P[(1+(r/n))nt)-1]
______________
(r/n)
3. The attempt at a solution For the savings account it was easy. My Attempt: Code:
A=250((1+(.005/12))^((12)(46))-1)/(.005/12) A=$155123.83 After this point it shows my attempts at solving the second part of the question. If you know how to solve it skip this next very long and very tedious section. If you are trying to solve it and am not sure how, the next part may inspire you or just confuse you. _______________________________________________________________________ ___ The second part is tricky. I must find the compound interest while removing money. My First Attempt: Solve for P using annuity Variables: Code:
A=155123.83 R=.0025 T=15 N=12 Code:
155123.83=P[(1+(.0025/12))^((12)(15))-1]
______________
(.0025/12)
This cannot be true if A is the annuity than P would be what you add per month to get A. _______________________________________________________________________ _____ My Seccond Attempt: Sum of a Geometric Sequence Variables: Code:
A1=155123.83 R=1.0025 N=180 Code:
((155123.83)(1-1.0025^180)) ____________________ (1-1.0025) _______________________________________________________________________ __ My Third Attempt: Indicated Sum Variables: Code:
X=180 I=155123.83 F=(i-x)(1-1.0025^180))/(1-1.0025) X [itex]\Sigma[/itex] F I Formula: Code:
180 Ʃ (i-x)(1.0025) 155123.83 __________________________________________________________________ My Final Attempt: Recursion Variables: Code:
A1=155123.83 AN=An-1-x)(1.0025) N>=180 Code:
AN=An-1-x)(1.0025) A1=155123.83 A2=(155123.83-x)(*1.0025) equals without X. _______________________________________________________________________ ____ I'm sure there is a way to do it that i am just missing. As you can see i did try.... I do not necessarily need the answer just a push in the right direction. And if you get the answer show your work so i do not lose my mind wondering. _______________________________________________________________________ ____ TLDR: Answer the problem and show work ;) TLDR EXTENDED: |
| Feb26-12, 03:19 AM | #2 |
|
|
I figured the way to find it would be
A=P[(1+(r/n)nt)-1] ______________ (r/n) x=Amount in the account P=Amount you remove each month. R=3% (annualized) n=12 but P would initially have to be the amount deposited. than the ammount in the account subtracted from the amount needed to live on. My brain hurts
|
| Feb26-12, 03:40 AM | #3 |
|
|
A(180) =0. Think of what you are doing. You have a sum of money deposited on your 65th birthday. Each month you earn interest, then withdraw some fixed amount, call it m. At the end of 180 months you make the last withdrawal of m, leaving 0 in the account. Write out the account balance for the first couple of months and you will see that what you have is the original principal growing minus a monthly annuity. Decide whether you are withdrawing at the beginning or end of the month. Set this quantity equal to 0 and solve for the monthly withdrawal.
|
| Feb26-12, 12:41 PM | #4 |
|
|
Finding your annuity, Finding your reverse annuity
like this?
Code:
AN=An-1-m)(1.0025) A1=155123.83 A2=(155123.83-m)(*1.0025) A180=0 Or is it more like Code:
0=m((1+(.0025/12))^((12)(15))-1)/(.0025/12) |
| Feb26-12, 01:54 PM | #5 |
|
|
I guess what I'm saying is that once you understand the general process and how to sum a geometric series, then you can do any variation of an annuity. I think that you're trying to shove numbers through a formula until it works and your code is confusing me.
let A(n)=amount in account at time n, 0<n<180 i=monthly rate =0.0025 m=monthly withdrawal So lets assume this is an ordinary annuity with withdrawals at the end of the month. If you want withdrawals at the beginning of each month then you can adjust the process. A(0)=155,123.83 in your case but we can start with any A(0). Now think of the process. At the end of the first month you have earned interest in the amount of iA(0) and then withdrawn m. Your balance at the end of the first month is A(1)=(1+i)A(0)-m Now repeat for the second month A(2)=(1+i)A(1)-m={(1+1)^2}A(0)-(1+i)m-m Continue this process and sum the resulting geometric series. You find A(180)=0={(1+i)^180}A(0)-(m/i){(1+i)^180-1} I set A(180)=0 because I wanted my money to last for exactly 15 years. Now I can solve for the monthly payment m. I can solve any problem involving any stream of payments and withdrawals by writing it out to see what happens. If I try to solve a problem by forcing it to fit some formula then I really don't know what I'm doing and I might get it wrong. Change the payments to the beginning of the month and one formula doesn't work (although I could shift it). By the way, I find m just over $1,071. I do have one question. Are you in an interest theory class or are you in an algebra class where they just give you formulas and you don't know how to sum a geometric series? |
| Feb26-12, 06:03 PM | #6 |
|
|
(Yes its a precalc class)
i understand geometric series in terms of a formula, that's the way i was taught it. i was taught geometric series is: Code:
an=a1(r)n-1 A1 being the first step in a series. R being the common ratio. but from what your saying the equation to find m would be. Code:
0=((1+.0025)180)155123.83-(m/.0025)((1+.0025)180-1) attempt to get m by itself: (m/.0025)=((1.0025)^180)155123.83-((1.0025)^179) (m/.0025)=243144.44887108957942 m=607.86112217772394855 this not being the sane answer you received what did i do wrong? another attempt at what you said. 0=(1.5674)155123.83-(m/.0025)(1.5635) 0=243141.091142-(m/.0025)(1.5635) -243141.091142=(-m/-.0025)(1.5635) -155510.7714=(-m/-.0025) 388.7769=-m m=-388.7769 :/ |
| Feb26-12, 06:18 PM | #7 |
|
|
i just am not sure i understand lol
|
| Feb26-12, 07:44 PM | #8 |
|
Recognitions:
|
RGV |
| Feb26-12, 09:23 PM | #9 |
|
|
Thanks Ray. I never even checked his principal at age 65, I just went from his amount. My trusty financial calculator tells me $734,577.94 at age 65.
But you have to check your algebra Yumito, your solution for m is all wrong. My answer above is correct if I assumed that your principal at age 65 was correct. After you make the correction that Ray pointed out you should find m=$5,073. |
| Feb27-12, 01:53 AM | #10 |
|
Recognitions:
|
RGV |
| Feb27-12, 02:52 AM | #11 |
|
|
you guys are going about it wrong. this is not actual financial information. The formula i set as (given) is the formula i am suppose to use...
|
| Feb27-12, 03:08 AM | #12 |
|
Recognitions:
|
Personally, I do not like the use of "canned" formulas; I much prefer to work the problem from first principles, stating exactly what calculations are involved. I generally do not trust "financial" packages, etc., without thoroughly testing them first before use, or reading reviews and tests of them. RGV |
| Feb27-12, 05:16 AM | #13 |
|
|
I'm sure you're correct Ray, I didn't check. You used beginning of period. I used end so he didn't have a gap in his stream. I'm embarrassed that I took his earlier work for granted, I should have noticed that it made no sense. I think what's occurring is that he's given some formulas without explanation. It makes me crazy that this is how math is taught.
|
| New Reply |
Similar discussions for: Finding your annuity, Finding your reverse annuity
|
||||
| Thread | Forum | Replies | ||
| annuity calculation problem | Engineering, Comp Sci, & Technology Homework | 0 | ||
| annuity differential equation | Calculus & Beyond Homework | 2 | ||
| Annuity | Precalculus Mathematics Homework | 7 | ||
| Annuity compounded annually | Introductory Physics Homework | 2 | ||
| Annuity confusion Help plz | Introductory Physics Homework | 8 | ||