#3) P=$1000, r=10%, t=1yr find interest compounded four times in one year
I1=(1000)*(.10)*(1/4)
show(I1)
I2=(1000+I1)*(.10)*(1/4)
show(I2)
I3=(1000+I1+I2)*(.10)*(1/4)
show(I3)
I4=(1000+I1+I2+I3)*(.10)*(1/4)
show(I4)
show(I1+I2+I3+I4)
show((I1+I2+I3+I4).n(digits=5))