summaryrefslogtreecommitdiff
path: root/progs/a854.py
blob: 6c398441e90910793c0d96d2b0cac2f30ff9bc66 (plain)
1
2
3
4
import math
def sum_gp(a,n,r):
 total = (a * (1 - math.pow(r, n ))) / (1- r)
 return total