I need to define a function "geomean(number s)" that takes all the numbers in the list, adds then together then takes the sum of the numbers and puts it to the power of 1/how many numbers there are in the list. the resulty should be something like this:
geomean([1,2,3,4])
1+2+3+4=10
10^(1/4)
do yall get what im trying to say? when i read what i just wrote its hard for ME to follow it.
if u look up geometrical mean on wikepedia you'll get a better understanding of what im trying to do.
geomean([1,2,3,4])
1+2+3+4=10
10^(1/4)
do yall get what im trying to say? when i read what i just wrote its hard for ME to follow it.
if u look up geometrical mean on wikepedia you'll get a better understanding of what im trying to do.
Comment