#!/usr/bin/perl # canadian payemnts using table from Pat Pelletier print "Content-type: text/html\n\n"; print "
UPDATE: July 25, 1996 - Changed to be more realistic!
| Capitalized Cost: | \$ $neg | ($msr MSRP minus discount)"; $lp = $neg - $dwn; $mf = $int/2400; printf(" |
| Lease Price: | \$ %9.2f | (above minus \$ $dwn down payment)\n",$lp); printf(" |
| Residual Value: | \$ %9.2f | (after $lln months)\n",$res); $df = ( $lp - $res ) / $lln; printf(" |
| Depreciation Fee: | \$ %6.2f | - part of lease payment", $df); $lf = ( $lp + $res) * $mf; printf(" |
| Lease Fee: | \$ %6.2f | - part of lease payment",$lf); $mp = $df + $lf; printf(" |
| Monthly Payment : | \$ %6.2f | without tax",$mp); # $utax = ($tax/100) * ($lp - $res); $utax = ($tax/100) * $mp; printf(" |
| Usage Tax: | \$ %6.2f | over full loan (%4.2f %% of %6.2f)", $utax,$tax,$lp-$res); printf(" |
| Total Monthly Payment: | \$ %6.2f | WHAT YOU PAY",
$mp+$utax);
}
print< back to Mortgage Home Page back to Mortgage Links Page Hugh Chou TailEnd |