%{
    This program
    computes the intial value of an
    ordinary annuity
%}
R = 100;        % Fixed amount
i1 = 9/100;     % Interest rate
n = 5;
w0 = R*(1 - (1 + i1)^-n)/i1