document.write( "Question 1206658: Starting on July 1, 2000, Peter borrows $7600
\n" );
document.write( " each year for 4 years from his dear Aunt May to pay for college. (Note: the last date that he borrows money is July 1, 2003.) From the beginning, Aunt May agreed to defer all interest on the loans until Peter finds a job; i.e. Peter's loans will not accumulate any interest until the first day he starts working. After that, Peter will be charged 8 percent compounded semiannually, and he will pay Aunt May back with 14 equal semiannual payments, the first coming 6 months after he starts his job. Peter finds a job as a photographer for a local newspaper, and his first day of work is July 1, 2004. For tax reasons, Peter needs to compute the total amount of interest that he will pay to Aunt May in the year 2007. How much in interest did Peter actually pay in 2007? \n" );
document.write( "
Algebra.Com's Answer #844248 by ikleyn(52781)![]() ![]() You can put this solution on YOUR website! . \n" ); document.write( "1206658 \n" ); document.write( "Starting on July 1, 2000, Peter borrows $7600 each year for 4 years from his dear Aunt May \n" ); document.write( "to pay for college. (Note: the last date that he borrows money is July 1, 2003.) \n" ); document.write( "From the beginning, Aunt May agreed to defer all interest on the loans until Peter finds a job; \n" ); document.write( "i.e. Peter's loans will not accumulate any interest until the first day he starts working. \n" ); document.write( "After that, Peter will be charged 8 percent compounded semiannually, \n" ); document.write( "and he will pay Aunt May back with 14 equal semiannual payments, \n" ); document.write( "the first coming 6 months after he starts his job. \n" ); document.write( "Peter finds a job as a photographer for a local newspaper, and his first day of work is July 1, 2004. \n" ); document.write( "For tax reasons, Peter needs to compute the total amount of interest that he will pay to Aunt May \n" ); document.write( "in the year 2007. How much in interest did Peter actually pay in 2007? \n" ); document.write( "~~~~~~~~~~~~~~~~~~~~~~~\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \r\n" ); document.write( "Let's make the timeline\r\n" ); document.write( "\r\n" ); document.write( " July 1, 2000 Peter borrows $7600 The debt becomes $7600 \r\n" ); document.write( "\r\n" ); document.write( " July 1, 2001 Peter borrows $7600 The debt becomes $15200 \r\n" ); document.write( "\r\n" ); document.write( " July 1, 2002 Peter borrows $7600 The debt becomes $22800\r\n" ); document.write( "\r\n" ); document.write( " July 1, 2003 Peter borrows $7600 The debt becomes $30400\r\n" ); document.write( "\r\n" ); document.write( " July 1, 2004 Peter found the job The debt is $30400 and Peter is charged 8% compounded semiannually from this date\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "So, starting from July 1, 2004 we have classic loan problem:\r\n" ); document.write( "\r\n" ); document.write( " the loan amount is $30400; it is 8% charged semiannually;\r\n" ); document.write( " the debt should be repaid in 14 equal semiannual payments (two payments per year), \r\n" ); document.write( " in 7 years (2005, 2006, 2007, 2008, 2009, 20010, 2011).\r\n" ); document.write( "\r\n" ); document.write( "Make one more timeline\r\n" ); document.write( "\r\n" ); document.write( " 1-st payment Jan 1, 2005 first payment comes 6 months after he starts his job\r\n" ); document.write( " 2-nd payment Jul 1, 2005\r\n" ); document.write( " 3-rd payment Jan 1, 2006\r\n" ); document.write( " 4-th payment Jul 1, 2006\r\n" ); document.write( " 5-th payment Jan 1, 2007\r\n" ); document.write( " 6-th payment Jul 1, 2007\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "They want you determine the total amount of interest Peter pays in 2007.\r\n" ); document.write( "\r\n" ); document.write( "So, they want you find the sum of the interest portions of the 5-th and 6-th payments.\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "Use the Excel function IPMT, which is specially designed to calculate the interest part \r\n" ); document.write( "of a classic loan scheme for the specific payments.\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "For description of this function see these sources\r\n" ); document.write( "\r\n" ); document.write( " wording/text description \r\n" ); document.write( " https://www.wallstreetprep.com/knowledge/ipmt-function/\r\n" ); document.write( "\r\n" ); document.write( " Youtube videos\r\n" ); document.write( " https://www.youtube.com/watch?v=xZq4RNqE7ts\r\n" ); document.write( " https://www.youtube.com/watch?v=bni0l75lc-8\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "The format of the function IPMT is as follows\r\n" ); document.write( "\r\n" ); document.write( " = IPMT(rate, per, nper, principal, fv, type)\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "In this format \"rate\" is the rate per period = 0.04 (= 0.08/2 semiannually) required parameter\r\n" ); document.write( "\r\n" ); document.write( " per = 5 - the payment, of which we want to get the interest part; required parameter\r\n" ); document.write( "\r\n" ); document.write( " nper = 14 - total number of payments; required parameter \r\n" ); document.write( "\r\n" ); document.write( " principal = 30400; required parameter\r\n" ); document.write( "\r\n" ); document.write( " fv is optional (we can omit it);\r\n" ); document.write( "\r\n" ); document.write( " type is optional (we can omit it, which means that \r\n" ); document.write( " the payment is due at the end of the half-year period)\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "So, we write in Excel cell/spreadsheet for the interest part of the 5-th payment\r\n" ); document.write( "\r\n" ); document.write( " = IPMT(0.04, 5, 14, 30400), and we get the value of the interest for the 5-th payment of $933.71.\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "Next, we write in Excel cell/spreadsheet for the interest part of the 6-th payment\r\n" ); document.write( "\r\n" ); document.write( " = IPMT(0.04, 6, 14, 30400), and we get the value of the interest for the 6-th payment of $855.64.\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "So, total interest part of the two Peter's payments of the year 2007 is the sum $933.71 + $855.64 = $1,789.64. ANSWER\r\n" ); document.write( "\r \n" ); document.write( "\n" ); document.write( "Solved.\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |