<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Value of Future Payments</title>
	<atom:link href="http://valueoffuturepayments.com/feed" rel="self" type="application/rss+xml" />
	<link>http://valueoffuturepayments.com</link>
	<description>Future Payments Value Advice</description>
	<lastBuildDate>Thu, 29 Jul 2010 21:39:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>how do you calculate net present value for continuous payments over many years??</title>
		<link>http://valueoffuturepayments.com/how-do-you-calculate-net-present-value-for-continuous-payments-over-many-years</link>
		<comments>http://valueoffuturepayments.com/how-do-you-calculate-net-present-value-for-continuous-payments-over-many-years#comments</comments>
		<pubDate>Thu, 29 Jul 2010 21:39:05 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[calculate]]></category>
		<category><![CDATA[continuous]]></category>
		<category><![CDATA[many]]></category>
		<category><![CDATA[over]]></category>
		<category><![CDATA[payments]]></category>
		<category><![CDATA[present]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[years]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/how-do-you-calculate-net-present-value-for-continuous-payments-over-many-years</guid>
		<description><![CDATA[my problem states that a natural preserve would yield a net benefit stream of $5 per year, forever and to calculate the net present value when r= .04&#8230; im so stuck because the formula doesn&#8217;t make any sense to me&#8230;
How do you calculate the present value of an annuity when the payments do no start [...]]]></description>
			<content:encoded><![CDATA[<p>my problem states that a natural preserve would yield a net benefit stream of $5 per year, forever and to calculate the net present value when r= .04&#8230; im so stuck because the formula doesn&#8217;t make any sense to me&#8230;</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/how-do-you-calculate-the-present-value-of-an-annuity-when-the-payments-do-no-start-until-four-years-from-now" title="How do you calculate the present value of an annuity when the payments do no start until four years from now?">How do you calculate the present value of an annuity when the payments do no start until four years from now?</a></li><li><a href="http://valueoffuturepayments.com/calculate-the-future-value-of-a-deposit-of-5000-compounded-annually-at-an-interest-rate-of-6-over-23-years" title="Calculate the future value of a deposit of $5,000 compounded annually at an interest rate of 6% over 23 years?">Calculate the future value of a deposit of $5,000 compounded annually at an interest rate of 6% over 23 years?</a></li><li><a href="http://valueoffuturepayments.com/how-can-i-calculate-the-present-value-of-annuity-that-begins-15-years-in-the-future-using-excel" title="How can I calculate the present value of annuity that begins 15 years in the future using excel?">How can I calculate the present value of annuity that begins 15 years in the future using excel?</a></li><li><a href="http://valueoffuturepayments.com/using-the-formula-p-f-1-i-n-calculate-the-present-value-of-an-investment-that-will-yield-12000" title="Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?">Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/how-do-you-calculate-net-present-value-for-continuous-payments-over-many-years/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Help with terminating my C loop?</title>
		<link>http://valueoffuturepayments.com/help-with-terminating-my-c-loop</link>
		<comments>http://valueoffuturepayments.com/help-with-terminating-my-c-loop#comments</comments>
		<pubDate>Thu, 29 Jul 2010 04:40:36 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[help]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[terminating]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/help-with-terminating-my-c-loop</guid>
		<description><![CDATA[include 
int main (void)
{
double x, y;
printf(&#8220;Input x value: &#8220;);
scanf(&#8220;%lf&#8221;, &#038;x);
    if (x ]]></description>
			<content:encoded><![CDATA[<p>include <stdio.h></p>
<p>int main (void)</p>
<p>{</p>
<p>double x, y;</p>
<p>printf(&#8220;Input x value: &#8220;);<br />
scanf(&#8220;%lf&#8221;, &#038;x);<br />
    if (x <0)<br />
        printf(&#8220;Error.&#8221;);<br />
    else<br />
        printf(&#8220;Input value of y: &#8220;);<br />
        scanf(&#8220;%lf&#8221;, &#038;y);<br />
        if (y <0)<br />
            printf(&#8220;Error.&#8221;);<br />
        else<br />
            printf(&#8220;The future value of your money based on calculations is: $%.2f\n&#8221;, x+y);<br />
}</p>
<p>In my &#8220;else&#8221;s, I expected the program would terminate after it printed out &#8220;Error.&#8221; on the screen, but it doesn&#8217;t. </p>
<p>Why doesn&#8217;t the program end? And how could I terminate it in my else?</p>
<p>Thank you.</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/social-security-benefit-calculation-problemneed-help" title="Social Security Benefit calculation problem,need help~?">Social Security Benefit calculation problem,need help~?</a></li><li><a href="http://valueoffuturepayments.com/accounting-i-am-stumped-by-this-interest-calculation-help" title="Accounting: I am STUMPED by this interest calculation. HELP!?">Accounting: I am STUMPED by this interest calculation. HELP!?</a></li><li><a href="http://valueoffuturepayments.com/mom-being-secretive-please-help" title="Mom Being Secretive? Please Help!?">Mom Being Secretive? Please Help!?</a></li><li><a href="http://valueoffuturepayments.com/ancient-mesopotamia-and-hammurabi-help" title="ancient mesopotamia and hammurabi help?">ancient mesopotamia and hammurabi help?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/help-with-terminating-my-c-loop/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What is the present value equasion for momentary calculation of an option?</title>
		<link>http://valueoffuturepayments.com/what-is-the-present-value-equasion-for-momentary-calculation-of-an-option</link>
		<comments>http://valueoffuturepayments.com/what-is-the-present-value-equasion-for-momentary-calculation-of-an-option#comments</comments>
		<pubDate>Fri, 23 Jul 2010 13:40:17 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[calculation]]></category>
		<category><![CDATA[equasion]]></category>
		<category><![CDATA[momentary]]></category>
		<category><![CDATA[option.]]></category>
		<category><![CDATA[present]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/what-is-the-present-value-equasion-for-momentary-calculation-of-an-option</guid>
		<description><![CDATA[I want a formula I can plug in the values from known values that I get from Scottrade, Yahoo, SEC, what have you, to calculate my risk of investment when I purchase an option.  &#8220;The Black Scholes Model assumes that the option can only be exercised at expiration.&#8221;?
What does Present value calculation allows managers [...]]]></description>
			<content:encoded><![CDATA[<p>I want a formula I can plug in the values from known values that I get from Scottrade, Yahoo, SEC, what have you, to calculate my risk of investment when I purchase an option.  &#8220;The Black Scholes Model assumes that the option can only be exercised at expiration.&#8221;?</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/what-does-present-value-calculation-allows-managers-to-do" title="What does Present value calculation allows managers to do?">What does Present value calculation allows managers to do?</a></li><li><a href="http://valueoffuturepayments.com/how-does-a-single-cash-flow-present-value-example-differ-from-an-annuity-calculation" title="How does a single cash flow present value example differ from an annuity calculation?">How does a single cash flow present value example differ from an annuity calculation?</a></li><li><a href="http://valueoffuturepayments.com/how-do-you-calculate-net-present-value-for-continuous-payments-over-many-years" title="how do you calculate net present value for continuous payments over many years??">how do you calculate net present value for continuous payments over many years??</a></li><li><a href="http://valueoffuturepayments.com/using-the-formula-p-f-1-i-n-calculate-the-present-value-of-an-investment-that-will-yield-12000" title="Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?">Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/what-is-the-present-value-equasion-for-momentary-calculation-of-an-option/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Are my retirement 5 year buy in calculations correct?</title>
		<link>http://valueoffuturepayments.com/are-my-retirement-5-year-buy-in-calculations-correct</link>
		<comments>http://valueoffuturepayments.com/are-my-retirement-5-year-buy-in-calculations-correct#comments</comments>
		<pubDate>Thu, 22 Jul 2010 21:40:43 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[calculations]]></category>
		<category><![CDATA[correct]]></category>
		<category><![CDATA[retirement]]></category>
		<category><![CDATA[year]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/are-my-retirement-5-year-buy-in-calculations-correct</guid>
		<description><![CDATA[Assumptions .
Age 44.
Retirement at 55.
Cost of buying 5 extra years toward retirement     ~50,000*.
Current yearly pay      ~ $65,000.
5 years extra retirement benefit    x         10%.
Current benefit           $6,500.
Years [...]]]></description>
			<content:encoded><![CDATA[<p>Assumptions .<br />
Age 44.<br />
Retirement at 55.<br />
Cost of buying 5 extra years toward retirement     ~50,000*.</p>
<p>Current yearly pay      ~ $65,000.<br />
5 years extra retirement benefit    x         10%.<br />
Current benefit           $6,500.</p>
<p>Years to retirement (55)      11.<br />
Future value of benefit with 2% COLA<br />
and 10 years compounding                     ~$8,000.</p>
<p>Conservative investment comparison.<br />
A) $8,000 a year with 2% COLA for 20<br />
years (age 75) @ discount rate of 11%                   ~$87,000.<br />
Present worth of $87,000 in 11 year @ 5%            ~$50,000*.<br />
Added value            $37,000.<br />
Rate of Return  5.04%.</p>
<p>Aggressive investment comparison.<br />
B) $8,000 a year with 2% COLA for 20.<br />
years (age 75) @ discount rate of 6.5%                 ~$157,000.</p>
<p>Present worth of $157,000 in 11 year @ 10.5%     ~$50,000*.<br />
Added value         $107,000.<br />
Rate of Return10.45%.</p>
<p>Average Rate of Return 7.75%.</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/what-is-the-future-value-of-a-5year-ordinary-annuity-that-promises-to-pay-300-each-year-interest-rate-7" title="what is the future value of a 5year ordinary annuity that promises to pay $300 each year. Interest rate 7%?">what is the future value of a 5year ordinary annuity that promises to pay $300 each year. Interest rate 7%?</a></li><li><a href="http://valueoffuturepayments.com/if-i-need-to-go-out-of-business-and-my-landlord-theatens-to-keep-me-on-the-hook-for-a-year-left-on-my-lease" title="If I need to go out of business and my landlord theatens to keep me on the hook for a year left on my lease..?">If I need to go out of business and my landlord theatens to keep me on the hook for a year left on my lease..?</a></li><li><a href="http://valueoffuturepayments.com/i-am-trying-to-find-out-the-single-sum-death-benefit-value-of-a-group-retirement-purchased-defined-annuity" title="I am trying to find out the single sum death benefit value of a group retirement purchased defined annuity?">I am trying to find out the single sum death benefit value of a group retirement purchased defined annuity?</a></li><li><a href="http://valueoffuturepayments.com/calculate-the-final-amount-of-a-20-year-annuity-if-payments-of-2000-are-made-at-the-end-of-every-year" title="Calculate the final amount of a 20-year annuity if payments of $2000 are made at the end of every year.?">Calculate the final amount of a 20-year annuity if payments of $2000 are made at the end of every year.?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/are-my-retirement-5-year-buy-in-calculations-correct/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?</title>
		<link>http://valueoffuturepayments.com/using-the-formula-p-f-1-i-n-calculate-the-present-value-of-an-investment-that-will-yield-12000</link>
		<comments>http://valueoffuturepayments.com/using-the-formula-p-f-1-i-n-calculate-the-present-value-of-an-investment-that-will-yield-12000#comments</comments>
		<pubDate>Sat, 17 Jul 2010 05:42:56 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[$12000]]></category>
		<category><![CDATA[calculate]]></category>
		<category><![CDATA[formula]]></category>
		<category><![CDATA[investment]]></category>
		<category><![CDATA[present]]></category>
		<category><![CDATA[using]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[yield]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/using-the-formula-p-f-1-i-n-calculate-the-present-value-of-an-investment-that-will-yield-12000</guid>
		<description><![CDATA[fifteen years from now at an annual rate of 10%.. The answer is $2872.70..But how do you use this formula to come up with this answer. I do not understand the formula &#038; how it is used to come up with the answer
how calculate present value of investment?Solve the problem using present value formula?What is [...]]]></description>
			<content:encoded><![CDATA[<p>fifteen years from now at an annual rate of 10%.. The answer is $2872.70..But how do you use this formula to come up with this answer. I do not understand the formula &#038; how it is used to come up with the answer</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/how-calculate-present-value-of-investment" title="how calculate present value of investment?">how calculate present value of investment?</a></li><li><a href="http://valueoffuturepayments.com/solve-the-problem-using-present-value-formula" title="Solve the problem using present value formula?">Solve the problem using present value formula?</a></li><li><a href="http://valueoffuturepayments.com/what-is-the-formula-to-calculate-the-present-value-of-money" title="What is the formula to calculate the present value of money?">What is the formula to calculate the present value of money?</a></li><li><a href="http://valueoffuturepayments.com/how-do-you-calculate-the-future-value-of-an-investment-if-you-dont-know-the-present-value-and-vice-versa" title="How do you calculate the future value of an investment if you don&#8217;t know the present value and vice versa?">How do you calculate the future value of an investment if you don&#8217;t know the present value and vice versa?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/using-the-formula-p-f-1-i-n-calculate-the-present-value-of-an-investment-that-will-yield-12000/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>math of investing spreadsheet?</title>
		<link>http://valueoffuturepayments.com/math-of-investing-spreadsheet</link>
		<comments>http://valueoffuturepayments.com/math-of-investing-spreadsheet#comments</comments>
		<pubDate>Fri, 16 Jul 2010 14:39:52 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[investing]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[spreadsheet]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/math-of-investing-spreadsheet</guid>
		<description><![CDATA[Ok, I know the formula for future value.
MYMONEY=C2*(1+F2)^G3
C2 = Source $$
F2 = Interest rate
G3 = Periods.
All 3 can be adjusted for what iffs.
G3 usualy changed to 5,10,20,22 (yrs to retirement)
to see what the $$ will be in a future time.
I built the spreadsheet to see if I could let the inheritance pay certain bills &#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, I know the formula for future value.<br />
MYMONEY=C2*(1+F2)^G3<br />
C2 = Source $$<br />
F2 = Interest rate<br />
G3 = Periods.<br />
All 3 can be adjusted for what iffs.</p>
<p>G3 usualy changed to 5,10,20,22 (yrs to retirement)<br />
to see what the $$ will be in a future time.</p>
<p>I built the spreadsheet to see if I could let the inheritance pay certain bills &#8230; but I assumed the periods would be yearly.<br />
I forgot that the investments pay off more often.<br />
I relize using a yearly period is very conservative to what funds would actually earn over a years time?</p>
<p>How would u adjust the above, with what Ive given here? </p>
<p>Dont give editorials about interest rates etc..I have averaged 10%-18% for decades..(and during certain years did better).<br />
My dad has done 12-20% for at least 8 years.<br />
But I agreee that the calculation above should be unusually conservative.</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/future-value-math-accounting" title="Future Value -Math &#8211; Accounting?">Future Value -Math &#8211; Accounting?</a></li><li><a href="http://valueoffuturepayments.com/future-value-math-question" title="Future Value Math Question?">Future Value Math Question?</a></li><li><a href="http://valueoffuturepayments.com/math-problems-need-help-10pts" title="Math Problems.. Need help! 10pts!?">Math Problems.. Need help! 10pts!?</a></li><li><a href="http://valueoffuturepayments.com/i-need-help-finding-the-future-value-of-this-math-problem-can-anyone-help" title="I need help finding the future value of this math problem can anyone help?">I need help finding the future value of this math problem can anyone help?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/math-of-investing-spreadsheet/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to find the present value of this problem?</title>
		<link>http://valueoffuturepayments.com/how-to-find-the-present-value-of-this-problem</link>
		<comments>http://valueoffuturepayments.com/how-to-find-the-present-value-of-this-problem#comments</comments>
		<pubDate>Sat, 10 Jul 2010 21:42:09 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[Find]]></category>
		<category><![CDATA[present]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[this]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/how-to-find-the-present-value-of-this-problem</guid>
		<description><![CDATA[The question is, &#8220;What is the present value for the future value of $500 at 5% compounded quarterly for 2 years? I am not sure what formula to use and I tried this and I got a different answer then the back of the book. Can someone show me step by step?
Thanks!
100=200/(1.06)^t how do I [...]]]></description>
			<content:encoded><![CDATA[<p>The question is, &#8220;What is the present value for the future value of $500 at 5% compounded quarterly for 2 years? I am not sure what formula to use and I tried this and I got a different answer then the back of the book. Can someone show me step by step?</p>
<p>Thanks!</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/1002001-06t-how-do-i-find-t-this-is-from-the-present-value-formula" title="100=200/(1.06)^t how do I find t, this is from the present value formula?">100=200/(1.06)^t how do I find t, this is from the present value formula?</a></li><li><a href="http://valueoffuturepayments.com/how-do-i-find-the-future-value-of-this-problem-using-ti-83-plus-calculator" title="how do i find the future value of this problem using TI-83 plus calculator???">how do i find the future value of this problem using TI-83 plus calculator???</a></li><li><a href="http://valueoffuturepayments.com/this-is-a-problem-regarding-present-value-of-annuity" title="this is a problem regarding present value of annuity.?">this is a problem regarding present value of annuity.?</a></li><li><a href="http://valueoffuturepayments.com/what-nominal-interest-rate-must-the-analyst-be-using-to-find-the-future-value-in-this-problem" title="What nominal interest rate must the analyst be using to find the future value in this problem?">What nominal interest rate must the analyst be using to find the future value in this problem?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/how-to-find-the-present-value-of-this-problem/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>An increase in the risk associated with a future stream of cash should result in an increase in the discount?</title>
		<link>http://valueoffuturepayments.com/an-increase-in-the-risk-associated-with-a-future-stream-of-cash-should-result-in-an-increase-in-the-discount</link>
		<comments>http://valueoffuturepayments.com/an-increase-in-the-risk-associated-with-a-future-stream-of-cash-should-result-in-an-increase-in-the-discount#comments</comments>
		<pubDate>Sat, 10 Jul 2010 07:41:49 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[associated]]></category>
		<category><![CDATA[cash]]></category>
		<category><![CDATA[discount]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[increase]]></category>
		<category><![CDATA[result]]></category>
		<category><![CDATA[risk]]></category>
		<category><![CDATA[Should]]></category>
		<category><![CDATA[stream]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/an-increase-in-the-risk-associated-with-a-future-stream-of-cash-should-result-in-an-increase-in-the-discount</guid>
		<description><![CDATA[An increase in the risk associated with a future stream of cash should result in an increase in the discount
rate used in the present value calculation.
True False
why is it not possible to determine the future value of a perpertual stream of cash flow?What is the formula for Future value and present value of mixed stream [...]]]></description>
			<content:encoded><![CDATA[<p>An increase in the risk associated with a future stream of cash should result in an increase in the discount<br />
rate used in the present value calculation.<br />
True False</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/why-is-it-not-possible-to-determine-the-future-value-of-a-perpertual-stream-of-cash-flow" title="why is it not possible to determine the future value of a perpertual stream of cash flow?">why is it not possible to determine the future value of a perpertual stream of cash flow?</a></li><li><a href="http://valueoffuturepayments.com/what-is-the-formula-for-future-value-and-present-value-of-mixed-stream-of-cash-flows" title="What is the formula for Future value and present value of mixed stream of cash flows?">What is the formula for Future value and present value of mixed stream of cash flows?</a></li><li><a href="http://valueoffuturepayments.com/lady-85-has-to-pay-big-loan-she-cosigned-for-addict-grandson-should-son-risk-his-own-familys-future-to-help" title="lady -85 has to pay big loan she cosigned for addict grandson, should son risk his own family&#8217;s future to help?">lady -85 has to pay big loan she cosigned for addict grandson, should son risk his own family&#8217;s future to help?</a></li><li><a href="http://valueoffuturepayments.com/how-do-you-determine-the-future-value-of-multiple-single-cash-flows" title="How do you determine the future value of multiple single cash flows?">How do you determine the future value of multiple single cash flows?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/an-increase-in-the-risk-associated-with-a-future-stream-of-cash-should-result-in-an-increase-in-the-discount/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I find a formula for future and present values?</title>
		<link>http://valueoffuturepayments.com/how-do-i-find-a-formula-for-future-and-present-values</link>
		<comments>http://valueoffuturepayments.com/how-do-i-find-a-formula-for-future-and-present-values#comments</comments>
		<pubDate>Sun, 04 Jul 2010 13:42:37 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[Find]]></category>
		<category><![CDATA[formula]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[present]]></category>
		<category><![CDATA[values]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/how-do-i-find-a-formula-for-future-and-present-values</guid>
		<description><![CDATA[A persons annual salary starts out at $30,000. Find the formula for the persons salary t years later and find the salary after 5 years and 30 years in each case below:
a) each year the person recieves a raise of $2,000
b) Each year the person recieves a 5% raise
What is the FORMULA to find out [...]]]></description>
			<content:encoded><![CDATA[<p>A persons annual salary starts out at $30,000. Find the formula for the persons salary t years later and find the salary after 5 years and 30 years in each case below:<br />
a) each year the person recieves a raise of $2,000<br />
b) Each year the person recieves a 5% raise</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/what-is-the-formula-to-find-out-the-net-present-value-of-an-amount-to-be-received-in-the-future" title="What is the FORMULA to find out the net present value of an amount to be received in the future?">What is the FORMULA to find out the net present value of an amount to be received in the future?</a></li><li><a href="http://valueoffuturepayments.com/use-the-compound-interest-formula-to-find-the-present-value-p-for-the-following-given-values" title="Use the compound interest formula to find the present value P, for the following given values?">Use the compound interest formula to find the present value P, for the following given values?</a></li><li><a href="http://valueoffuturepayments.com/1002001-06t-how-do-i-find-t-this-is-from-the-present-value-formula" title="100=200/(1.06)^t how do I find t, this is from the present value formula?">100=200/(1.06)^t how do I find t, this is from the present value formula?</a></li><li><a href="http://valueoffuturepayments.com/how-to-find-the-interest-between-present-and-future-value" title="How to find the interest between present and future value?">How to find the interest between present and future value?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/how-do-i-find-a-formula-for-future-and-present-values/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>some of the effects of using compound interest?</title>
		<link>http://valueoffuturepayments.com/some-of-the-effects-of-using-compound-interest</link>
		<comments>http://valueoffuturepayments.com/some-of-the-effects-of-using-compound-interest#comments</comments>
		<pubDate>Sun, 04 Jul 2010 00:39:15 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[compound]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[interest]]></category>
		<category><![CDATA[some]]></category>
		<category><![CDATA[using]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/some-of-the-effects-of-using-compound-interest</guid>
		<description><![CDATA[What are some of the effects of using compound interest when evaluating future value transactions and calculations
Is there a way to program the exponential growth formula, compound interest formula, and etc, into a TI83 plus?Use the compound interest formula to find the present value P, for the following given values?Write a method using Java code [...]]]></description>
			<content:encoded><![CDATA[<p>What are some of the effects of using compound interest when evaluating future value transactions and calculations</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/is-there-a-way-to-program-the-exponential-growth-formula-compound-interest-formula-and-etc-into-a-ti83-plus" title="Is there a way to program the exponential growth formula, compound interest formula, and etc, into a TI83 plus?">Is there a way to program the exponential growth formula, compound interest formula, and etc, into a TI83 plus?</a></li><li><a href="http://valueoffuturepayments.com/use-the-compound-interest-formula-to-find-the-present-value-p-for-the-following-given-values" title="Use the compound interest formula to find the present value P, for the following given values?">Use the compound interest formula to find the present value P, for the following given values?</a></li><li><a href="http://valueoffuturepayments.com/write-a-method-using-java-code-that-computes-future-investment-value-at-a-given-interest-rate-for-a-specified" title="Write a method using Java code that computes future investment value at a given interest rate for a specified?">Write a method using Java code that computes future investment value at a given interest rate for a specified?</a></li><li><a href="http://valueoffuturepayments.com/7-what-would-be-the-amount-of-compound-interest-on-8000-inversted-for-two-years-at-12-compounded-semiannua" title="7. What would be the amount of compound interest on 8,000 inversted for two years at 12%, compounded semiannua?">7. What would be the amount of compound interest on 8,000 inversted for two years at 12%, compounded semiannua?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/some-of-the-effects-of-using-compound-interest/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>how calculate present value of investment?</title>
		<link>http://valueoffuturepayments.com/how-calculate-present-value-of-investment</link>
		<comments>http://valueoffuturepayments.com/how-calculate-present-value-of-investment#comments</comments>
		<pubDate>Mon, 28 Jun 2010 05:41:39 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[calculate]]></category>
		<category><![CDATA[investment]]></category>
		<category><![CDATA[present]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/how-calculate-present-value-of-investment</guid>
		<description><![CDATA[I have a partnership investment I inherited &#8212; I never have looked very carefully into it.  Also, the partner is another family member, so I have basically left it all to trusting the general partner.
Now I want to sell and think I am being cheated of the fair value of the investment.  The [...]]]></description>
			<content:encoded><![CDATA[<p>I have a partnership investment I inherited &#8212; I never have looked very carefully into it.  Also, the partner is another family member, so I have basically left it all to trusting the general partner.</p>
<p>Now I want to sell and think I am being cheated of the fair value of the investment.  The partnership holds the notes on the financing of real estate.  How do I calculate present value of this investment.</p>
<p>I remember from college that there were formulas for calculating present value of a steady stream of future income.  The thing is that this is not a certainty that this is a steady stream.  People can default on their mortgage, or pay it all ahead of schedule if they refinance.</p>
<p>Is there an easy way of calculating PV without hiring an accountant?</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/using-the-formula-p-f-1-i-n-calculate-the-present-value-of-an-investment-that-will-yield-12000" title="Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?">Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?</a></li><li><a href="http://valueoffuturepayments.com/how-do-you-calculate-the-future-value-of-an-investment-if-you-dont-know-the-present-value-and-vice-versa" title="How do you calculate the future value of an investment if you don&#8217;t know the present value and vice versa?">How do you calculate the future value of an investment if you don&#8217;t know the present value and vice versa?</a></li><li><a href="http://valueoffuturepayments.com/how-do-you-calculate-net-present-value-for-continuous-payments-over-many-years" title="how do you calculate net present value for continuous payments over many years??">how do you calculate net present value for continuous payments over many years??</a></li><li><a href="http://valueoffuturepayments.com/calculate-the-present-value-of-a" title="Calculate the present value of a&#8230;..?">Calculate the present value of a&#8230;..?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/how-calculate-present-value-of-investment/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Social Security Benefit calculation problem,need help~?</title>
		<link>http://valueoffuturepayments.com/social-security-benefit-calculation-problemneed-help</link>
		<comments>http://valueoffuturepayments.com/social-security-benefit-calculation-problemneed-help#comments</comments>
		<pubDate>Sun, 27 Jun 2010 17:39:36 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[benefit]]></category>
		<category><![CDATA[calculation]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[problemneed]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/social-security-benefit-calculation-problemneed-help</guid>
		<description><![CDATA[-Assume Tom&#8217;s base salary is $90000 per year.
-He is 28 now and plan on working until the end of his 65th year.
-The current withholding rate for Social Security is 6.2% for the employee, and the current withholding rate for the employer match for Social Security is 6.2%. 
-Assume that the Social Security Administration can make [...]]]></description>
			<content:encoded><![CDATA[<p>-Assume Tom&#8217;s base salary is $90000 per year.</p>
<p>-He is 28 now and plan on working until the end of his 65th year.</p>
<p>-The current withholding rate for Social Security is 6.2% for the employee, and the current withholding rate for the employer match for Social Security is 6.2%. </p>
<p>-Assume that the Social Security Administration can make an annual return of 2 percent of Tom&#8217;s account.</p>
<p>-Assume that the stock market rate of return is 11 percent.</p>
<p>-Assume that the 65 the maximum payment Tom can receive from Social Security is $1800 per month.</p>
<p>Please answer the following:</p>
<p>1.What is the future value of all of Tom&#8217;s contributions using the 2% rate of return? What does it look like with the 11% return?</p>
<p>2.Assume that Tom live until he is 80,what is the total value (constant dollars) that he will get paid out of Social Security?Compared to his contributions,is it a good investment?</p>
<p>3.Assume that Tom could take his lump sum investment is Social Security at age 65 (both the employee and employer contributions) and invest in Treasury bonds that yield 4.5 percent (paid quarterly).Using just the coupon rate,how much income would this generate for Tom at retirement?</p>
<p>4.Does it make sense to keep the current system or allow people to invest part of there own Social Security?</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/where-do-you-go-for-financial-help-while-awaiting-social-security-hearing" title="where do you go for financial help while awaiting social security hearing?">where do you go for financial help while awaiting social security hearing?</a></li><li><a href="http://valueoffuturepayments.com/accounting-i-am-stumped-by-this-interest-calculation-help" title="Accounting: I am STUMPED by this interest calculation. HELP!?">Accounting: I am STUMPED by this interest calculation. HELP!?</a></li><li><a href="http://valueoffuturepayments.com/what-will-be-my-social-security-payments-in-15-years" title="what will be my social security payments in 15 years?">what will be my social security payments in 15 years?</a></li><li><a href="http://valueoffuturepayments.com/should-we-deny-social-security-payments-to-those-who-do-not-produce-children" title="Should we deny social security payments to those who do not produce children?">Should we deny social security payments to those who do not produce children?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/social-security-benefit-calculation-problemneed-help/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The formula S = P(1 + n)i will determine the present value of $1. true or false?</title>
		<link>http://valueoffuturepayments.com/the-formula-s-p1-ni-will-determine-the-present-value-of-1-true-or-false</link>
		<comments>http://valueoffuturepayments.com/the-formula-s-p1-ni-will-determine-the-present-value-of-1-true-or-false#comments</comments>
		<pubDate>Mon, 21 Jun 2010 21:40:36 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[determine]]></category>
		<category><![CDATA[False]]></category>
		<category><![CDATA[formula]]></category>
		<category><![CDATA[present]]></category>
		<category><![CDATA[True]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/the-formula-s-p1-ni-will-determine-the-present-value-of-1-true-or-false</guid>
		<description><![CDATA[The formula S = P(1 + n)i will determine the present value of $1. is it true or false?
True or False: A rise in interest rates decreases the present value of future payments.?Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?What is the [...]]]></description>
			<content:encoded><![CDATA[<p>The formula S = P(1 + n)i will determine the present value of $1. is it true or false?</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/true-or-false-a-rise-in-interest-rates-decreases-the-present-value-of-future-payments" title="True or False: A rise in interest rates decreases the present value of future payments.?">True or False: A rise in interest rates decreases the present value of future payments.?</a></li><li><a href="http://valueoffuturepayments.com/using-the-formula-p-f-1-i-n-calculate-the-present-value-of-an-investment-that-will-yield-12000" title="Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?">Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?</a></li><li><a href="http://valueoffuturepayments.com/what-is-the-formula-to-find-out-the-net-present-value-of-an-amount-to-be-received-in-the-future" title="What is the FORMULA to find out the net present value of an amount to be received in the future?">What is the FORMULA to find out the net present value of an amount to be received in the future?</a></li><li><a href="http://valueoffuturepayments.com/use-the-compound-interest-formula-to-find-the-present-value-p-for-the-following-given-values" title="Use the compound interest formula to find the present value P, for the following given values?">Use the compound interest formula to find the present value P, for the following given values?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/the-formula-s-p1-ni-will-determine-the-present-value-of-1-true-or-false/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finance????????</title>
		<link>http://valueoffuturepayments.com/finance</link>
		<comments>http://valueoffuturepayments.com/finance#comments</comments>
		<pubDate>Mon, 21 Jun 2010 10:39:20 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[Finance]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/finance</guid>
		<description><![CDATA[Contrast the calculation of future (terminal) value with the calculation of present value. What is the difference?
i need help on a Finance question regarding Future Value?Will anyone EVER accept Public Campaign Finance in future elections?Finance Problem: Future value of an annuity?FINANCE HOMEWORK HELP! TVM?]]></description>
			<content:encoded><![CDATA[<p>Contrast the calculation of future (terminal) value with the calculation of present value. What is the difference?</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/i-need-help-on-a-finance-question-regarding-future-value" title="i need help on a Finance question regarding Future Value?">i need help on a Finance question regarding Future Value?</a></li><li><a href="http://valueoffuturepayments.com/will-anyone-ever-accept-public-campaign-finance-in-future-elections" title="Will anyone EVER accept Public Campaign Finance in future elections?">Will anyone EVER accept Public Campaign Finance in future elections?</a></li><li><a href="http://valueoffuturepayments.com/finance-problem-future-value-of-an-annuity" title="Finance Problem: Future value of an annuity?">Finance Problem: Future value of an annuity?</a></li><li><a href="http://valueoffuturepayments.com/finance-homework-help-tvm" title="FINANCE HOMEWORK HELP! TVM?">FINANCE HOMEWORK HELP! TVM?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/finance/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Is there a way to program the exponential growth formula, compound interest formula, and etc, into a TI83 plus?</title>
		<link>http://valueoffuturepayments.com/is-there-a-way-to-program-the-exponential-growth-formula-compound-interest-formula-and-etc-into-a-ti83-plus</link>
		<comments>http://valueoffuturepayments.com/is-there-a-way-to-program-the-exponential-growth-formula-compound-interest-formula-and-etc-into-a-ti83-plus#comments</comments>
		<pubDate>Tue, 15 Jun 2010 13:41:06 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[compound]]></category>
		<category><![CDATA[exponential]]></category>
		<category><![CDATA[formula]]></category>
		<category><![CDATA[growth]]></category>
		<category><![CDATA[interest]]></category>
		<category><![CDATA[into]]></category>
		<category><![CDATA[plus]]></category>
		<category><![CDATA[program.]]></category>
		<category><![CDATA[there]]></category>
		<category><![CDATA[TI83]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/is-there-a-way-to-program-the-exponential-growth-formula-compound-interest-formula-and-etc-into-a-ti83-plus</guid>
		<description><![CDATA[I just started using a TI83 plus and I am currently doing a lot of exponential functions and formulas like the exponential growth formula, compound interest formula, present value formula, and etc, and I was wondering if there is a way to program these in for quick reference? (So I don&#8217;t have to keep looking [...]]]></description>
			<content:encoded><![CDATA[<p>I just started using a TI83 plus and I am currently doing a lot of exponential functions and formulas like the exponential growth formula, compound interest formula, present value formula, and etc, and I was wondering if there is a way to program these in for quick reference? (So I don&#8217;t have to keep looking up the formula&#8217;s, its a lot to remember!)<br />
Thanks for any tips on this!</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/use-the-compound-interest-formula-to-find-the-present-value-p-for-the-following-given-values" title="Use the compound interest formula to find the present value P, for the following given values?">Use the compound interest formula to find the present value P, for the following given values?</a></li><li><a href="http://valueoffuturepayments.com/compound-interest-formula-for-future-value" title="COMPOUND INTEREST FORMULA FOR FUTURE VALUE?">COMPOUND INTEREST FORMULA FOR FUTURE VALUE?</a></li><li><a href="http://valueoffuturepayments.com/is-there-a-future-value-formula-for-a-growing-annuity-that-compounds-interest-monthly-and-increases-annually" title="Is there a future value formula for a growing annuity that compounds interest monthly and increases annually?">Is there a future value formula for a growing annuity that compounds interest monthly and increases annually?</a></li><li><a href="http://valueoffuturepayments.com/some-of-the-effects-of-using-compound-interest" title="some of the effects of using compound interest?">some of the effects of using compound interest?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/is-there-a-way-to-program-the-exponential-growth-formula-compound-interest-formula-and-etc-into-a-ti83-plus/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Accounting: I am STUMPED by this interest calculation. HELP!?</title>
		<link>http://valueoffuturepayments.com/accounting-i-am-stumped-by-this-interest-calculation-help</link>
		<comments>http://valueoffuturepayments.com/accounting-i-am-stumped-by-this-interest-calculation-help#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:41:18 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[Accounting]]></category>
		<category><![CDATA[calculation]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[interest]]></category>
		<category><![CDATA[STUMPED]]></category>
		<category><![CDATA[this]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/accounting-i-am-stumped-by-this-interest-calculation-help</guid>
		<description><![CDATA[What is the future value of equal semi-annual payments of $9,000 at 14% compounded semi-annually for 3 years:
a.$91,039
b.$54,380
c.$40,001
d.$64,380
Please help me with this compounded interest problem?Social Security Benefit calculation problem,need help~?Can someone explain me how i got 304, 614 on this calculation?I need help finding the future value of this math problem can anyone help?]]></description>
			<content:encoded><![CDATA[<p>What is the future value of equal semi-annual payments of $9,000 at 14% compounded semi-annually for 3 years:<br />
a.$91,039<br />
b.$54,380<br />
c.$40,001<br />
d.$64,380</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/please-help-me-with-this-compounded-interest-problem" title="Please help me with this compounded interest problem?">Please help me with this compounded interest problem?</a></li><li><a href="http://valueoffuturepayments.com/social-security-benefit-calculation-problemneed-help" title="Social Security Benefit calculation problem,need help~?">Social Security Benefit calculation problem,need help~?</a></li><li><a href="http://valueoffuturepayments.com/can-someone-explain-me-how-i-got-304-614-on-this-calculation" title="Can someone explain me how i got 304, 614 on this calculation?">Can someone explain me how i got 304, 614 on this calculation?</a></li><li><a href="http://valueoffuturepayments.com/i-need-help-finding-the-future-value-of-this-math-problem-can-anyone-help" title="I need help finding the future value of this math problem can anyone help?">I need help finding the future value of this math problem can anyone help?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/accounting-i-am-stumped-by-this-interest-calculation-help/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m looking for a &#8220;demand for payment&#8221; template?</title>
		<link>http://valueoffuturepayments.com/im-looking-for-a-demand-for-payment-template</link>
		<comments>http://valueoffuturepayments.com/im-looking-for-a-demand-for-payment-template#comments</comments>
		<pubDate>Wed, 09 Jun 2010 08:37:23 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[demand]]></category>
		<category><![CDATA[looking]]></category>
		<category><![CDATA[Payment]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/im-looking-for-a-demand-for-payment-template</guid>
		<description><![CDATA[I would like to find a demand for payment or bad check letter that I can download and edit as needed. I have searched online, but can&#8217;t find any that are free. Do you know where online I can find one for free that I can save on my computer for future use? I am [...]]]></description>
			<content:encoded><![CDATA[<p>I would like to find a demand for payment or bad check letter that I can download and edit as needed. I have searched online, but can&#8217;t find any that are free. Do you know where online I can find one for free that I can save on my computer for future use? I am in the state of Texas, not sure if that matters. Thanks.</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/what-course-is-in-demand-right-now-i-mean-a-course-which-offers-great-payment-when-you-have-work-in-future" title="What course is in demand right now? I mean a course which offers great payment when you have work in future?">What course is in demand right now? I mean a course which offers great payment when you have work in future?</a></li><li><a href="http://valueoffuturepayments.com/for-comcast-cable-how-many-days-past-the-due-date-does-the-payment-have-to-be-to-make-it-late" title="For comcast cable, how many days past the due date does the payment have to be to make it late?">For comcast cable, how many days past the due date does the payment have to be to make it late?</a></li><li><a href="http://valueoffuturepayments.com/suppose-my-payment-is-due-on-certain-day-and-i-dont-pay-it-from-what-day-they-start-counting-past-due" title="suppose my payment is due on certain day and i dont pay it. from what day they start counting past due?">suppose my payment is due on certain day and i dont pay it. from what day they start counting past due?</a></li><li><a href="http://valueoffuturepayments.com/i-had-2-credit-accounts-with-capital-one-i-havent-paid-back-my-monthly-payment-in-the-past-5-years" title="I had 2 credit accounts with Capital one I haven&#8217;t paid back my monthly payment in the past 5 years?">I had 2 credit accounts with Capital one I haven&#8217;t paid back my monthly payment in the past 5 years?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/im-looking-for-a-demand-for-payment-template/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do you determine the future value of multiple single cash flows?</title>
		<link>http://valueoffuturepayments.com/how-do-you-determine-the-future-value-of-multiple-single-cash-flows</link>
		<comments>http://valueoffuturepayments.com/how-do-you-determine-the-future-value-of-multiple-single-cash-flows#comments</comments>
		<pubDate>Wed, 09 Jun 2010 06:39:50 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[cash]]></category>
		<category><![CDATA[determine]]></category>
		<category><![CDATA[Flows]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[Multiple]]></category>
		<category><![CDATA[single]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/how-do-you-determine-the-future-value-of-multiple-single-cash-flows</guid>
		<description><![CDATA[Hi, I am unsure to determine, if you deposit $100 today and $200 at the end of this year and also deposit another $200 in 2 years from now, assuming that you can earn an interest rate of 4.5%p.a. on your investment, how much would you have in exactly 5 years from now? 
Could you [...]]]></description>
			<content:encoded><![CDATA[<p>Hi, I am unsure to determine, if you deposit $100 today and $200 at the end of this year and also deposit another $200 in 2 years from now, assuming that you can earn an interest rate of 4.5%p.a. on your investment, how much would you have in exactly 5 years from now? </p>
<p>Could you please show your working out.</p>
<p>Cheers <img src='http://valueoffuturepayments.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/future-value-and-multiple-cash-flows" title="Future Value and Multiple Cash Flows?">Future Value and Multiple Cash Flows?</a></li><li><a href="http://valueoffuturepayments.com/please-help-calculating-future-value-and-multiple-cash-flows" title="Please help: Calculating Future Value and Multiple Cash Flows?">Please help: Calculating Future Value and Multiple Cash Flows?</a></li><li><a href="http://valueoffuturepayments.com/why-is-it-not-possible-to-determine-the-future-value-of-a-perpertual-stream-of-cash-flow" title="why is it not possible to determine the future value of a perpertual stream of cash flow?">why is it not possible to determine the future value of a perpertual stream of cash flow?</a></li><li><a href="http://valueoffuturepayments.com/what-is-the-formula-for-future-value-and-present-value-of-mixed-stream-of-cash-flows" title="What is the formula for Future value and present value of mixed stream of cash flows?">What is the formula for Future value and present value of mixed stream of cash flows?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/how-do-you-determine-the-future-value-of-multiple-single-cash-flows/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>For comcast cable, how many days past the due date does the payment have to be to make it late?</title>
		<link>http://valueoffuturepayments.com/for-comcast-cable-how-many-days-past-the-due-date-does-the-payment-have-to-be-to-make-it-late</link>
		<comments>http://valueoffuturepayments.com/for-comcast-cable-how-many-days-past-the-due-date-does-the-payment-have-to-be-to-make-it-late#comments</comments>
		<pubDate>Wed, 09 Jun 2010 06:39:48 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[cable]]></category>
		<category><![CDATA[comcast]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[days]]></category>
		<category><![CDATA[late]]></category>
		<category><![CDATA[many]]></category>
		<category><![CDATA[past]]></category>
		<category><![CDATA[Payment]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/for-comcast-cable-how-many-days-past-the-due-date-does-the-payment-have-to-be-to-make-it-late</guid>
		<description><![CDATA[i.e. If Comcast received the payment maybe 2 days after the date the payment is due, is it considered late and are late fees charged?  Or is it a longer time period before late fees are charged?
i missed 2 payments of my card but i made the full minimum payment required 2 days after [...]]]></description>
			<content:encoded><![CDATA[<p>i.e. If Comcast received the payment maybe 2 days after the date the payment is due, is it considered late and are late fees charged?  Or is it a longer time period before late fees are charged?</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/i-missed-2-payments-of-my-card-but-i-made-the-full-minimum-payment-required-2-days-after-the-due-date" title="i missed 2 payments of my card but i made the full minimum payment required 2 days after the due date?">i missed 2 payments of my card but i made the full minimum payment required 2 days after the due date?</a></li><li><a href="http://valueoffuturepayments.com/if-a-late-payment-is-received-can-i-apply-it-to-late-charges-before-past-due-balance" title="If A Late Payment Is Received; Can I Apply It To Late Charges Before Past Due Balance?">If A Late Payment Is Received; Can I Apply It To Late Charges Before Past Due Balance?</a></li><li><a href="http://valueoffuturepayments.com/i-am-27-days-past-due-on-my-mortgage-payment-how-soon-does-a-past-30-day-show-up-on-a-credit-report" title="I am 27 days past due on my mortgage payment. How soon does a past 30 day show up on a credit report?">I am 27 days past due on my mortgage payment. How soon does a past 30 day show up on a credit report?</a></li><li><a href="http://valueoffuturepayments.com/suppose-my-payment-is-due-on-certain-day-and-i-dont-pay-it-from-what-day-they-start-counting-past-due" title="suppose my payment is due on certain day and i dont pay it. from what day they start counting past due?">suppose my payment is due on certain day and i dont pay it. from what day they start counting past due?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/for-comcast-cable-how-many-days-past-the-due-date-does-the-payment-have-to-be-to-make-it-late/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>What is the FORMULA to find out the net present value of an amount to be received in the future?</title>
		<link>http://valueoffuturepayments.com/what-is-the-formula-to-find-out-the-net-present-value-of-an-amount-to-be-received-in-the-future</link>
		<comments>http://valueoffuturepayments.com/what-is-the-formula-to-find-out-the-net-present-value-of-an-amount-to-be-received-in-the-future#comments</comments>
		<pubDate>Wed, 09 Jun 2010 05:39:43 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[amount]]></category>
		<category><![CDATA[Find]]></category>
		<category><![CDATA[formula]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[present]]></category>
		<category><![CDATA[received]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/what-is-the-formula-to-find-out-the-net-present-value-of-an-amount-to-be-received-in-the-future</guid>
		<description><![CDATA[How do I find a formula for future and present values?Use the compound interest formula to find the present value P, for the following given values?100=200/(1.06)^t how do I find t, this is from the present value formula?The present value of a payment to be received in the future is?]]></description>
			<content:encoded><![CDATA[<ul class="related_post"><li><a href="http://valueoffuturepayments.com/how-do-i-find-a-formula-for-future-and-present-values" title="How do I find a formula for future and present values?">How do I find a formula for future and present values?</a></li><li><a href="http://valueoffuturepayments.com/use-the-compound-interest-formula-to-find-the-present-value-p-for-the-following-given-values" title="Use the compound interest formula to find the present value P, for the following given values?">Use the compound interest formula to find the present value P, for the following given values?</a></li><li><a href="http://valueoffuturepayments.com/1002001-06t-how-do-i-find-t-this-is-from-the-present-value-formula" title="100=200/(1.06)^t how do I find t, this is from the present value formula?">100=200/(1.06)^t how do I find t, this is from the present value formula?</a></li><li><a href="http://valueoffuturepayments.com/the-present-value-of-a-payment-to-be-received-in-the-future-is" title="The present value of a payment to be received in the future is?">The present value of a payment to be received in the future is?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/what-is-the-formula-to-find-out-the-net-present-value-of-an-amount-to-be-received-in-the-future/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Voluntary Repossession?</title>
		<link>http://valueoffuturepayments.com/voluntary-repossession</link>
		<comments>http://valueoffuturepayments.com/voluntary-repossession#comments</comments>
		<pubDate>Wed, 09 Jun 2010 04:36:00 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[repossession]]></category>
		<category><![CDATA[Voluntary]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/voluntary-repossession</guid>
		<description><![CDATA[Well we can&#8217;t afford to have my car anymore.  I&#8217;m sure it&#8217;s not quite uncommon in this economy, but definitely has me embarrassed.  My husband got out of the military and now can&#8217;t find work.  And the only job that I&#8217;ve been able to even get is a part time minimum wager. [...]]]></description>
			<content:encoded><![CDATA[<p>Well we can&#8217;t afford to have my car anymore.  I&#8217;m sure it&#8217;s not quite uncommon in this economy, but definitely has me embarrassed.  My husband got out of the military and now can&#8217;t find work.  And the only job that I&#8217;ve been able to even get is a part time minimum wager.  If I tried to sell it out right, we&#8217;d owe way too much.  The economy has made my vehicle lose too much value.  I know this is not as bad as bankruptcy, but I really don&#8217;t want this to affect our future.  I&#8217;ll be going to school starting in summer, and I don&#8217;t want to have problems getting a job when I graduate.<br />
So my questions are:<br />
1. Will this hurt my future job?<br />
   -and why is it legal to discriminate against bad credit in the workforce?<br />
2.  How bad will it hurt to get an apartment/house/utilities?<br />
3.  If I make payments on the remaining balance, will it be as bad?<br />
4.  Will this economy affect how much the car would go for at the auction?</p>
<p>Thanks in advance for your answers!  I appreciate the help.<br />
1.  I don&#8217;t have any extra money to pay off the balance if I sold it<br />
2.  I don&#8217;t have good enough credit to get a loan to cover what it would sell for<br />
3.  My car was 2 years old when I bought it&#8230;I don&#8217;t buy new</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/conservative-christians-would-you-support-organ-repossession-if-it-was-legalized" title="Conservative Christians: Would you support organ repossession if it was legalized?">Conservative Christians: Would you support organ repossession if it was legalized?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/voluntary-repossession/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Girlfriend has negative equity in condo &#8211; what to do?</title>
		<link>http://valueoffuturepayments.com/girlfriend-has-negative-equity-in-condo-what-to-do</link>
		<comments>http://valueoffuturepayments.com/girlfriend-has-negative-equity-in-condo-what-to-do#comments</comments>
		<pubDate>Wed, 09 Jun 2010 01:14:18 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[condo]]></category>
		<category><![CDATA[equity]]></category>
		<category><![CDATA[Girlfriend]]></category>
		<category><![CDATA[negative]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/girlfriend-has-negative-equity-in-condo-what-to-do</guid>
		<description><![CDATA[My girlfriend bought her condo in late 2006, putting $5k down on a price of $160k. She paid probably $5-10k more than it was worth in the context of the overinflated prices at the time.
For a little more background &#8211; I am 29, she is 28. I have never owned property before. Earlier this year, [...]]]></description>
			<content:encoded><![CDATA[<p>My girlfriend bought her condo in late 2006, putting $5k down on a price of $160k. She paid probably $5-10k more than it was worth in the context of the overinflated prices at the time.</p>
<p>For a little more background &#8211; I am 29, she is 28. I have never owned property before. Earlier this year, she and I decided to live together, but her condo (a studio loft) was not an option. So we are renting an apartment together, and she is renting out the condo to a tenant. She is renting it for ~$200 less than her mortgage-plus-condo-fee payment, which is in turn about $200 more than her share of the rent on our apartment &#8211; upshot is that her cashflow is increased by about $200/month in this situation.</p>
<p>So in the short term, things are fine &#8211; we both have good careers, combined income of about $140k with the potential to grow substantially in the next few years. We had no trouble at all renting the condo for the upper end of the range we were shooting for. We are very much in love and have discussed the possibility of marriage in the near future.</p>
<p>With our future in mind, I am concerned about the condo. Zillow&#8217;s high estimate has it worth about $145k. This may still be on the low end, as the previous owners renovated the heck out of the place, everything is in great shape, and it shows VERY well so we should not have trouble renting it. But should she lose her job or have some other financial catastrophe, we would be sunk &#8211; she could not sell it for the amount left on the mortgage.</p>
<p>What can we do in the near and medium term? I think we will probably just keep renting it out &#8211; and perhaps I will look into buying a condo that we could pay for on my income alone, once the market has truly bottomed out and marriage looks like a probability &#8211; but, for my peace of mind, is there anything else we can do?</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/do-i-always-have-to-put-a-negative-sign-to-enter-pv-in-a-financial-calculator" title="Do I always have to put a negative sign to enter PV in a financial calculator?">Do I always have to put a negative sign to enter PV in a financial calculator?</a></li><li><a href="http://valueoffuturepayments.com/on-social-security-disability-and-defaulted-on-my-home-equity-line-of-credit" title="On Social Security Disability and defaulted on my home equity line of credit?">On Social Security Disability and defaulted on my home equity line of credit?</a></li><li><a href="http://valueoffuturepayments.com/a-2yr-old-condo-had-no-accounting-records-what-to-do" title="A 2yr old condo had no accounting records&#8230;.what to do??">A 2yr old condo had no accounting records&#8230;.what to do??</a></li><li><a href="http://valueoffuturepayments.com/im-23-and-make-42k-a-year-should-i-buy-a-condo" title="Im 23 and make 42K a year. Should I buy a condo?">Im 23 and make 42K a year. Should I buy a condo?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/girlfriend-has-negative-equity-in-condo-what-to-do/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Need Cash???</title>
		<link>http://valueoffuturepayments.com/need-cash</link>
		<comments>http://valueoffuturepayments.com/need-cash#comments</comments>
		<pubDate>Wed, 09 Jun 2010 00:40:40 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[cash]]></category>
		<category><![CDATA[need]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/need-cash</guid>
		<description><![CDATA[GET QUICK CASH FOR YOUR NOTE(S)
From: Mrs. Caroline Rhoads
notematch@yahoo.com
Greetings!
I am writing to introduce myself as a resource for helping people like you get the much needed cash you deserve or need for your seller financed trust deeds and mortgages.
I work with buyers to provide cash for real estate notes, trust deeds, promissory notes and many [...]]]></description>
			<content:encoded><![CDATA[<p>GET QUICK CASH FOR YOUR NOTE(S)</p>
<p>From: Mrs. Caroline Rhoads<br />
notematch@yahoo.com</p>
<p>Greetings!<br />
I am writing to introduce myself as a resource for helping people like you get the much needed cash you deserve or need for your seller financed trust deeds and mortgages.</p>
<p>I work with buyers to provide cash for real estate notes, trust deeds, promissory notes and many other types of structured payouts.<br />
If you have any trust deeds, mortgages, judgments, structured settlements and other forms of IOUs. And wish you could have the cash and not the income from these IOU or if you have any questions,<br />
Please feel free to email me and I will be sure to provide them with the best possible service.</p>
<p>I hope to hear from you soon,</p>
<p>Caroline Rhoads</p>
<p>P.S. Please feel free to contact me for any reason at: notematch@yahoo.com</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/i-have-a-structured-settlement-and-i-need-cash-now" title="i have a structured settlement and i need cash now?">i have a structured settlement and i need cash now?</a></li><li><a href="http://valueoffuturepayments.com/i-have-a-structured-settlement-and-i-need-cash-now-what-do-i-do" title="I have a structured settlement and I need cash now. What do I do?">I have a structured settlement and I need cash now. What do I do?</a></li><li><a href="http://valueoffuturepayments.com/i-have-a-structured-settlement-but-i-need-cash-now" title="I have a structured settlement but I need cash now?">I have a structured settlement but I need cash now?</a></li><li><a href="http://valueoffuturepayments.com/an-increase-in-the-risk-associated-with-a-future-stream-of-cash-should-result-in-an-increase-in-the-discount" title="An increase in the risk associated with a future stream of cash should result in an increase in the discount?">An increase in the risk associated with a future stream of cash should result in an increase in the discount?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/need-cash/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Can someone explain me how i got 304, 614 on this calculation?</title>
		<link>http://valueoffuturepayments.com/can-someone-explain-me-how-i-got-304-614-on-this-calculation</link>
		<comments>http://valueoffuturepayments.com/can-someone-explain-me-how-i-got-304-614-on-this-calculation#comments</comments>
		<pubDate>Tue, 08 Jun 2010 21:40:39 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[calculation]]></category>
		<category><![CDATA[explain]]></category>
		<category><![CDATA[someone]]></category>
		<category><![CDATA[this]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/can-someone-explain-me-how-i-got-304-614-on-this-calculation</guid>
		<description><![CDATA[Future value = payment{ [ (1 + i)^n - 1] / i }
240{ [ (1.006)^360 - 1] / 0.006}
which gives 304,614 
Using a website with financial formulas i got this result, but i can&#8217;t get it on my calculator. I dont know what to calculate first. do i have to calculate the (1.006)^360 and the [...]]]></description>
			<content:encoded><![CDATA[<p>Future value = payment{ [ (1 + i)^n - 1] / i }</p>
<p>240{ [ (1.006)^360 - 1] / 0.006}</p>
<p>which gives 304,614 </p>
<p>Using a website with financial formulas i got this result, but i can&#8217;t get it on my calculator. I dont know what to calculate first. do i have to calculate the (1.006)^360 and the rest and then multiply by 240?? thats not giving me 304, 614.. could someone explain me how to do this on calculator step by step? thanks</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/accounting-i-am-stumped-by-this-interest-calculation-help" title="Accounting: I am STUMPED by this interest calculation. HELP!?">Accounting: I am STUMPED by this interest calculation. HELP!?</a></li><li><a href="http://valueoffuturepayments.com/can-someone-fill-this-survey-out-for-me-its-for-a-socioloy-class-i-have-to-research-and-analyze-te-resaults" title="Can someone fill this survey out for me. It&#8217;s for a socioloy class. I have to research and analyze te resaults?">Can someone fill this survey out for me. It&#8217;s for a socioloy class. I have to research and analyze te resaults?</a></li><li><a href="http://valueoffuturepayments.com/can-you-liberals-please-explain-this-to-me" title="can you liberals please explain this to me?">can you liberals please explain this to me?</a></li><li><a href="http://valueoffuturepayments.com/i-am-trying-to-understand-future-contract-in-finance-can-someone-explain-in-simple-language" title="I am trying to understand future contract in finance. Can someone explain in simple language?">I am trying to understand future contract in finance. Can someone explain in simple language?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/can-someone-explain-me-how-i-got-304-614-on-this-calculation/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WACC (Weighted average cost of capital) calculation?</title>
		<link>http://valueoffuturepayments.com/wacc-weighted-average-cost-of-capital-calculation</link>
		<comments>http://valueoffuturepayments.com/wacc-weighted-average-cost-of-capital-calculation#comments</comments>
		<pubDate>Tue, 08 Jun 2010 20:40:51 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[average]]></category>
		<category><![CDATA[calculation]]></category>
		<category><![CDATA[capital]]></category>
		<category><![CDATA[cost]]></category>
		<category><![CDATA[WACC]]></category>
		<category><![CDATA[Weighted]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/wacc-weighted-average-cost-of-capital-calculation</guid>
		<description><![CDATA[Folks -
I am doing some analysis for several companies to answer the question &#8211; &#8220;The stock-price of a company is reflection of its current and future value component. For a given company, what is breakdown of the current and future value components.  For example, GOOG stock price reflects 10% current value and 90% future [...]]]></description>
			<content:encoded><![CDATA[<p>Folks -</p>
<p>I am doing some analysis for several companies to answer the question &#8211; &#8220;The stock-price of a company is reflection of its current and future value component. For a given company, what is breakdown of the current and future value components.  For example, GOOG stock price reflects 10% current value and 90% future value&#8221;.</p>
<p>To do this calculation, I need to know WACC (http://en.wikipedia.org/wiki/Weighted_average_cost_of_capital) for each company.  </p>
<p>Is there a source (like Rueters) where I can get WACC for any public company?  Or, if I use the formula mentioned in the wikipedia entry &#8211; then what items do I look at each company&#8217;s income statement/balance sheet to calculate WACC?</p>
<p>Any help appreciated.</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/what-is-the-average-cost-paid-by-someone-in-the-secondary-mortgage-market-for-an-existing-mortgage" title="What is the average cost paid by someone in the secondary mortgage market for an existing mortgage?">What is the average cost paid by someone in the secondary mortgage market for an existing mortgage?</a></li><li><a href="http://valueoffuturepayments.com/what-is-the-present-value-equasion-for-momentary-calculation-of-an-option" title="What is the present value equasion for momentary calculation of an option?">What is the present value equasion for momentary calculation of an option?</a></li><li><a href="http://valueoffuturepayments.com/social-security-benefit-calculation-problemneed-help" title="Social Security Benefit calculation problem,need help~?">Social Security Benefit calculation problem,need help~?</a></li><li><a href="http://valueoffuturepayments.com/accounting-i-am-stumped-by-this-interest-calculation-help" title="Accounting: I am STUMPED by this interest calculation. HELP!?">Accounting: I am STUMPED by this interest calculation. HELP!?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/wacc-weighted-average-cost-of-capital-calculation/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>how to calculate future value?</title>
		<link>http://valueoffuturepayments.com/how-to-calculate-future-value</link>
		<comments>http://valueoffuturepayments.com/how-to-calculate-future-value#comments</comments>
		<pubDate>Tue, 08 Jun 2010 13:43:33 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[calculate]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/how-to-calculate-future-value</guid>
		<description><![CDATA[if you deposit $10000 in a bank that pays 10% interest annually how much will be in your account after 5yrs
Need help with Calculate the future value of the following?how do you calculate IRR and future value in excel sheet?Calculate the future value of a deposit of $5,000 compounded annually at an interest rate of [...]]]></description>
			<content:encoded><![CDATA[<p>if you deposit $10000 in a bank that pays 10% interest annually how much will be in your account after 5yrs</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/need-help-with-calculate-the-future-value-of-the-following" title="Need help with Calculate the future value of the following?">Need help with Calculate the future value of the following?</a></li><li><a href="http://valueoffuturepayments.com/how-do-you-calculate-irr-and-future-value-in-excel-sheet" title="how do you calculate IRR and future value in excel sheet?">how do you calculate IRR and future value in excel sheet?</a></li><li><a href="http://valueoffuturepayments.com/calculate-the-future-value-of-a-deposit-of-5000-compounded-annually-at-an-interest-rate-of-6-over-23-years" title="Calculate the future value of a deposit of $5,000 compounded annually at an interest rate of 6% over 23 years?">Calculate the future value of a deposit of $5,000 compounded annually at an interest rate of 6% over 23 years?</a></li><li><a href="http://valueoffuturepayments.com/how-do-you-calculate-the-future-value-of-growing-annuities" title="How do you calculate the future value of growing annuities?">How do you calculate the future value of growing annuities?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/how-to-calculate-future-value/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Calculate the present value of a&#8230;..?</title>
		<link>http://valueoffuturepayments.com/calculate-the-present-value-of-a</link>
		<comments>http://valueoffuturepayments.com/calculate-the-present-value-of-a#comments</comments>
		<pubDate>Tue, 08 Jun 2010 11:40:10 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[a.....]]></category>
		<category><![CDATA[calculate]]></category>
		<category><![CDATA[present]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/calculate-the-present-value-of-a</guid>
		<description><![CDATA[Calculate the present value of a 6% U.S. Government bond that pays semi-annual interest for 5 years. Assume the bond’s principal payment is $1,000 and the market interest rate is 9%.
A.$614.94 B.$1118.69 C.$779.20 D.$881.31 E.$873.63
This is the last problem on my homework for finance class.  I don&#8217;t have my financial calculator and I can&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Calculate the present value of a 6% U.S. Government bond that pays semi-annual interest for 5 years. Assume the bond’s principal payment is $1,000 and the market interest rate is 9%.</p>
<p>A.$614.94 B.$1118.69 C.$779.20 D.$881.31 E.$873.63</p>
<p>This is the last problem on my homework for finance class.  I don&#8217;t have my financial calculator and I can&#8217;t figure this one out..if anyone can help me out that would be awesome!!</p>
<p>thanks so much everyone!!</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/how-do-you-calculate-net-present-value-for-continuous-payments-over-many-years" title="how do you calculate net present value for continuous payments over many years??">how do you calculate net present value for continuous payments over many years??</a></li><li><a href="http://valueoffuturepayments.com/using-the-formula-p-f-1-i-n-calculate-the-present-value-of-an-investment-that-will-yield-12000" title="Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?">Using the formula P = F/ (1 + i )n calculate the present value of an investment that will yield $12000?</a></li><li><a href="http://valueoffuturepayments.com/how-calculate-present-value-of-investment" title="how calculate present value of investment?">how calculate present value of investment?</a></li><li><a href="http://valueoffuturepayments.com/calculate-the-present-value-of-a-bond" title="Calculate the present value of a bond.?">Calculate the present value of a bond.?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/calculate-the-present-value-of-a/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Compute NPV, Make decision?</title>
		<link>http://valueoffuturepayments.com/compute-npv-make-decision</link>
		<comments>http://valueoffuturepayments.com/compute-npv-make-decision#comments</comments>
		<pubDate>Tue, 08 Jun 2010 11:40:08 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[compute]]></category>
		<category><![CDATA[decision]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/compute-npv-make-decision</guid>
		<description><![CDATA[Company wants to invest $150,000 on new machine. The following projection will occur. Company wants at least 20% return. Using table 1A, Compute NPV, Make decision 
                    Annual Cash Flows&#8217;       [...]]]></description>
			<content:encoded><![CDATA[<p>Company wants to invest $150,000 on new machine. The following projection will occur. Company wants at least 20% return. Using table 1A, Compute NPV, Make decision </p>
<p>                    Annual Cash Flows&#8217;          Factor&#8221;    _______________&#8221;&#8217;<br />
Cost Machine     $(150,000)&#8217;<br />
Increase in<br />
Working Capital   (100,000)&#8217;<br />
Year 1 Net Cash<br />
Flow                      70,000&#8242;<br />
Year 2 Net Cash<br />
Flow                      70,000&#8242;<br />
Year 3 Net Cash<br />
Flow                      70,000&#8242;<br />
Year 4 Net Cash<br />
Flow                      50,000&#8242;<br />
Year 5 Net Cash<br />
Flow                      30,000&#8242;<br />
Year 3 Spend on<br />
Tooling<br />
Maintenance         (20,000)&#8217;<br />
Year 5 Release<br />
Working Capital    100,000&#8242;<br />
Year 5 sell<br />
machine for<br />
salvage value         10,000&#8242;                                      _______________</p>
<p>Buy Machine     YES     NO                    Net Present Value</p>
<p>Table 1A<br />
Present Value of $1&#8242;                            Present Value of Annuity of $1&#8243;</p>
<p>              10%&#8217;              20%&#8217;                                   10%&#8221;          20%&#8221;<br />
Period 1   .909&#8242;              .833&#8242;       Period 1                .909&#8243;          .833&#8243;<br />
Period 2   .826&#8242;              .694&#8242;       Period 2              1.736&#8243;        1.528&#8243;<br />
Period 3   .751&#8242;              .579&#8242;       Period 3              2.487&#8243;        2.106&#8243;<br />
Period 4   .683&#8242;              .482&#8242;       Period 4              3.170&#8243;        2.589&#8243;<br />
Period 5   .621&#8242;              .402&#8242;       Period 5              3.791&#8243;        2.991&#8243;</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/compute-the-future-value-for-the-given-investments-at-the-end-of-5-years-when-p-8000-r-7-25-and-you" title="Compute the future value for the given investments at the end of 5 years when P = $8000; r = 7.25% and you?">Compute the future value for the given investments at the end of 5 years when P = $8000; r = 7.25% and you?</a></li><li><a href="http://valueoffuturepayments.com/what-is-the-advantage-of-computing-the-present-value-of-outflows-in-making-lease-versus-buy-decision" title="What is the advantage of computing the present value of outflows in making lease versus buy decision?">What is the advantage of computing the present value of outflows in making lease versus buy decision?</a></li><li><a href="http://valueoffuturepayments.com/how-do-you-compute-the-net-present-value-using-a-discount-rate" title="How do you compute the net present value using a discount rate?">How do you compute the net present value using a discount rate?</a></li><li><a href="http://valueoffuturepayments.com/how-to-compute-a-future-value-if-the-given-is-only-the-interest-rate-periods-per-year-and-the-present-value" title="How to compute a future value if the given is only the interest rate, periods per year and the present value?">How to compute a future value if the given is only the interest rate, periods per year and the present value?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/compute-npv-make-decision/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m so annoyed by Mother in Law&#8217;s bragging over her future hybrid car. How to get her to stop?</title>
		<link>http://valueoffuturepayments.com/im-so-annoyed-by-mother-in-laws-bragging-over-her-future-hybrid-car-how-to-get-her-to-stop</link>
		<comments>http://valueoffuturepayments.com/im-so-annoyed-by-mother-in-laws-bragging-over-her-future-hybrid-car-how-to-get-her-to-stop#comments</comments>
		<pubDate>Tue, 08 Jun 2010 08:36:16 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[annoyed]]></category>
		<category><![CDATA[bragging]]></category>
		<category><![CDATA[car.]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[hybrid]]></category>
		<category><![CDATA[laws]]></category>
		<category><![CDATA[Mother]]></category>
		<category><![CDATA[over]]></category>
		<category><![CDATA[stop]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/im-so-annoyed-by-mother-in-laws-bragging-over-her-future-hybrid-car-how-to-get-her-to-stop</guid>
		<description><![CDATA[Ok so my hubby and I don&#8217;t drive a new car, it&#8217;s almost ten years old. We made a deal to loan money off her boyfriend and pay him back so we can get a second car. Her boyfriend decided he&#8217;s going to help her buy her a Toyota Prius because she drives like a [...]]]></description>
			<content:encoded><![CDATA[<p>Ok so my hubby and I don&#8217;t drive a new car, it&#8217;s almost ten years old. We made a deal to loan money off her boyfriend and pay him back so we can get a second car. Her boyfriend decided he&#8217;s going to help her buy her a Toyota Prius because she drives like a mad woman. She is going to have to pay monthly payments which are going to be at least $300 a month ontop of at least $200 a month in gasoline. I am getting so annoyed hearing her say how she put down a deposit and she&#8217;s going to get her Prius soon. She already had her other car reposessed and my husband had to cover for her and go retrieve the vehicle that she HID at her boyfriend&#8217;s house. She&#8217;s a criminal, I know. </p>
<p>Anyways, I don&#8217;t think hybrid cars are a great deal for someone who is always complaining about being broke, who had a car repoed not even 1 year ago, and who cannot afford her utility bills to begin with. It&#8217;s just going to add an extra few hundred to her expenses, even if she saves money on gas, she&#8217;ll still have a car payment.</p>
<p>So everytime we see her, she is in lala land about this car she has on hold for when it comes in. What can I say to get her to stop? It&#8217;s getting rediculous, and no, I&#8217;m not jealous. I&#8217;m just ticked that this woman needs two cars and she&#8217;s a single mother (and she has to brag to someone less fortunate about it!)</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/calculate-the-future-value-of-a-deposit-of-5000-compounded-annually-at-an-interest-rate-of-6-over-23-years" title="Calculate the future value of a deposit of $5,000 compounded annually at an interest rate of 6% over 23 years?">Calculate the future value of a deposit of $5,000 compounded annually at an interest rate of 6% over 23 years?</a></li><li><a href="http://valueoffuturepayments.com/taking-over-father-in-laws-mortgage" title="Taking over father in laws mortgage?">Taking over father in laws mortgage?</a></li><li><a href="http://valueoffuturepayments.com/how-do-i-stop-worrying-about-the-future-money-work-education" title="How do I stop worrying about the future &#8211; money, work, education?">How do I stop worrying about the future &#8211; money, work, education?</a></li><li><a href="http://valueoffuturepayments.com/reporting-debit-card-loststolen-will-it-stop-all-future-payments-from-any-site" title="Reporting debit card lost/stolen, will it stop all future payments from any site&#8230;?">Reporting debit card lost/stolen, will it stop all future payments from any site&#8230;?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/im-so-annoyed-by-mother-in-laws-bragging-over-her-future-hybrid-car-how-to-get-her-to-stop/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Mom Being Secretive? Please Help!?</title>
		<link>http://valueoffuturepayments.com/mom-being-secretive-please-help</link>
		<comments>http://valueoffuturepayments.com/mom-being-secretive-please-help#comments</comments>
		<pubDate>Tue, 08 Jun 2010 08:36:14 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[being]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[PLEASE]]></category>
		<category><![CDATA[Secretive]]></category>

		<guid isPermaLink="false">http://valueoffuturepayments.com/mom-being-secretive-please-help</guid>
		<description><![CDATA[So I was helping my mom look for a paper she needed when I came across a paper with the title of..
Social Security Administration Retirement, Survivors and Disability Insurance Notice of Award.
The document had my name written all over it talking about a payment of a pretty large sum of money that my mother shall [...]]]></description>
			<content:encoded><![CDATA[<p>So I was helping my mom look for a paper she needed when I came across a paper with the title of..</p>
<p>Social Security Administration Retirement, Survivors and Disability Insurance Notice of Award.</p>
<p>The document had my name written all over it talking about a payment of a pretty large sum of money that my mother shall be recieving.(Im guessing because of me).</p>
<p>At the bottom it says &#8220;These and any future payments will go to the financial institution you selected.&#8221;</p>
<p>I was wondering what this is all about and if she is collecting money every month on my behalf, or if it was going into some account for me, or what?</p>
<p>By the way, when I asked her what it was about, she said it was something that wasnt meant for my eyes, then took it.</p>
<p>Please help!</p>
<ul class="related_post"><li><a href="http://valueoffuturepayments.com/could-someone-please-help-me-with-my-personal-statement-for-college-apps" title="Could someone please help me with my personal statement for college apps?">Could someone please help me with my personal statement for college apps?</a></li><li><a href="http://valueoffuturepayments.com/help-please" title="Help please!?">Help please!?</a></li><li><a href="http://valueoffuturepayments.com/intense-mesopotamia-help-please-history-hard-hammurabi" title="Intense mesopotamia help please, history hard HAMMURABI!?">Intense mesopotamia help please, history hard HAMMURABI!?</a></li><li><a href="http://valueoffuturepayments.com/please-help-10pts-for-best" title="Please Help! 10pts for Best!?">Please Help! 10pts for Best!?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://valueoffuturepayments.com/mom-being-secretive-please-help/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
