Comp Sci C++ Question: Calculate the Investment at time n

  • Thread starter Thread starter Hughng
  • Start date Start date
  • Tags Tags
    C++ Time
AI Thread Summary
The discussion revolves around a C++ program designed to calculate the time required to reach a desired investment amount based on user inputs, including initial investment, yearly growth rate, annual withdrawals, and target balance. A user encountered an issue where the expected withdrawal total was 340.11, but their program outputted 360, leading to confusion about the calculations. It was clarified that with a growth rate of -0.1 and an initial investment of 1000 while withdrawing 20 annually, reaching the desired balance of 1,000,000 is impossible. The conversation highlighted the importance of correctly interpreting assignment requirements and ensuring accurate calculations in programming. The user ultimately submitted their assignment despite the discrepancies in the expected output.
Hughng
Messages
26
Reaction score
0

Homework Statement


Pretend you have some money (ha!) that you want to invest in the stock market. Ask the user for:

  1. The initial investment
  2. Yearly estimated market growth
  3. How much (if any) you wish to withdraw from the account per year
  4. The desired level of money you wish to get
The growth formula per year is simply:
I_new = I_old x (1+g)
Assume you withdraw money from the account after it grows (you cannot withdraw more than the account has!). Find out how long it takes to reach the desired amount of money (if it is reachable at all).

Homework Equations


I completed the program but when I ran g =-0.1 with other given values, I was supposed to obtain 340.11 as my instructor required, but I got a whole number: 360.

The Attempt at a Solution


C:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
    double I_0, g, W, BAL, I;
    cout << " Initial Investment? ";
    cin >> I_0;
    cout << " Yearly growth rate? ";
    cin >> g;
    cout << " Yearly withdraw amount? ";
    cin >> W;
    cout << " Desired balance? ";
    cin >> BAL;
    I = I_0*(1 + g);
    int i = 1;
    if (W <= I_0 && g >= 0)
    {
        for (i = 1; I < BAL; i++)
            {  
                I = I - W;
                I = I*(1 + g);
            }
                cout << " Years: " <<  i << endl;
                cout << " Balance at the end: "<< I << endl;
                cout << " Amount withdrawn over period: " << W*i << endl;  
    }
    else if (W >= I_0)
    {
        cout << " Years: " <<  i << endl;
        cout << " Balance at the end: "<< 0 << endl;
        cout << " Amount withdrawn over period: " << I << endl;
    }
  
    else if (W <= I_0 && g <= 0)
    {
        for (i = 1; I >= 0; i++)
            {  
                I = I - W;
                I = I*(1 + g);
            }
                cout << " Years: " <<  ceil(i) << endl;
                cout << " Balance at the end: "<< 0 << endl;
                cout << " Amount withdrawn over period: " <<W*i << endl;  
    }
    return 0;
}
 
Last edited by a moderator:
Physics news on Phys.org
Hughng said:

Homework Statement


Pretend you have some money (ha!) that you want to invest in the stock market. Ask the user for:

  1. The initial investment
  2. Yearly estimated market growth
  3. How much (if any) you wish to withdraw from the account per year
  4. The desired level of money you wish to get
The growth formula per year is simply:
I_new = I_old x (1+g)
Assume you withdraw money from the account after it grows (you cannot withdraw more than the account has!). Find out how long it takes to reach the desired amount of money (if it is reachable at all).

Homework Equations


I completed the program but when I ran g =-0.1 with other given values, I was supposed to obtain 340.11 as my instructor required, but I got a whole number: 360.
What were the other input values you used?

Also, when you post code, please include code tags. I have added them in your post.

They look like this:
C:
<your code>
Hughng said:

The Attempt at a Solution


C:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
    double I_0, g, W, BAL, I;
    cout << " Initial Investment? ";
    cin >> I_0;
    cout << " Yearly growth rate? ";
    cin >> g;
    cout << " Yearly withdraw amount? ";
    cin >> W;
    cout << " Desired balance? ";
    cin >> BAL;
    I = I_0*(1 + g);
    int i = 1;
    if (W <= I_0 && g >= 0)
    {
        for (i = 1; I < BAL; i++)
            { 
                I = I - W;
                I = I*(1 + g);
            }
                cout << " Years: " <<  i << endl;
                cout << " Balance at the end: "<< I << endl;
                cout << " Amount withdrawn over period: " << W*i << endl; 
    }
    else if (W >= I_0)
    {
        cout << " Years: " <<  i << endl;
        cout << " Balance at the end: "<< 0 << endl;
        cout << " Amount withdrawn over period: " << I << endl;
    }
 
    else if (W <= I_0 && g <= 0)
    {
        for (i = 1; I >= 0; i++)
            { 
                I = I - W;
                I = I*(1 + g);
            }
                cout << " Years: " <<  ceil(i) << endl;
                cout << " Balance at the end: "<< 0 << endl;
                cout << " Amount withdrawn over period: " <<W*i << endl; 
    }
    return 0;
}
 
Here are the data:

Initial investment? 1000
Yearly growth rate? 0.1
Yearly withdraw amount? 20
Desired balance? 1000000
Years: 18
Balance at end: 0
Amount withdrawn over period: 340.114
 
Hughng said:
Yearly growth rate? 0.1
You said in an earlier post that you were using -0.1 as the growth rate.
Which is it, a growth rate of 0.1 or -0.1?
 
The growth rate is -0.1. I am sorry I did not notice. Thank you.
 
If the growth rate is -0.1 and you start with 1000 and withdraw 20 each year, you'll never get to 1,000,000.
 
Hello Mark,
Yes, if you keep withdrawing the money given the initial amount above, you will not get the desire investment. The assignment will ask you to "cout" O for final balance, but you still have to print out the number of years that will take to exhaust your account, and the total amount you can withdraw until you have nothing to withdraw. However, I had an issue which was I could not print out the desired withdrawn amount as the assignment require: 340.11. I got a whole number which is 360.
Thank you.
 
Hughng said:
I had an issue which was I could not print out the desired withdrawn amount as the assignment require: 340.11. I got a whole number which is 360.
Why do you think that $340.11 is the correct amount? If you withdraw $20 per year for 18 years, that's $360.
 
  • #10
I did not think so, but the assignment asked me to print out the desired result. I submitted the assignment, but I really appreciate your help.
 

Similar threads

Replies
2
Views
2K
Replies
6
Views
3K
Replies
23
Views
3K
Replies
13
Views
2K
Replies
2
Views
2K
Replies
17
Views
5K
Replies
7
Views
7K
Back
Top