PYTHON, SERIE ARMÓNICA Y SERIE P
########### PROGRAMA SOBRE COMPARATIVA DE SERIE ARMÓNICA Y SERIE P
########### EJEMPLO DE SERIE P CON P=2
# Mi canal en Youtube: https://www.youtube.com/channel/UCe4UCHmQu92O03Z1fgzUXmQ
#### INICIO FUNCION ARMONICA ####
def armoni(n):
if n>=1:
suma = 0.0
i=1.0
while i<=n:
suma = suma + 1/i
print "Suma: ", suma
i=i + 1
return suma
else:
print "Valor no permitido"
return -1
#### INICIO SERIE P ###
def seriep(p,n):
if n>=1:
suma = 0.0
i=1.0
while i<=n:
suma = suma + 1/i**p
print "Suma: ", suma
i=i + 1
return suma
else:
print "Valor no permitido"
return -1
######### INICIO PRINCIPAL######
print "INICIO"
print " SERIE ARMONICA "
n= input('Ingrese numero de iteraciones: ')
if n>=1:
print "SUMAS: ", armoni(n)
else:
print " ",armoni(n)
print " SERIE P con p = 2 " ##aqui podemos preguntar que valor de p
## asegurandonos que p >1
n= input('Ingrese numero de iteraciones: ')
if n>=1:
print "SUMAS: ", seriep(2,n)
else:
print " ",seriep(2,n)
print "--- Gracias ---"
### FIN PROGRAMA
EJECUCIÓN DEL PROGRAMA
########### EJEMPLO DE SERIE P CON P=2
# Mi canal en Youtube: https://www.youtube.com/channel/UCe4UCHmQu92O03Z1fgzUXmQ
#### INICIO FUNCION ARMONICA ####
def armoni(n):
if n>=1:
suma = 0.0
i=1.0
while i<=n:
suma = suma + 1/i
print "Suma: ", suma
i=i + 1
return suma
else:
print "Valor no permitido"
return -1
#### INICIO SERIE P ###
def seriep(p,n):
if n>=1:
suma = 0.0
i=1.0
while i<=n:
suma = suma + 1/i**p
print "Suma: ", suma
i=i + 1
return suma
else:
print "Valor no permitido"
return -1
######### INICIO PRINCIPAL######
print "INICIO"
print " SERIE ARMONICA "
n= input('Ingrese numero de iteraciones: ')
if n>=1:
print "SUMAS: ", armoni(n)
else:
print " ",armoni(n)
print " SERIE P con p = 2 " ##aqui podemos preguntar que valor de p
## asegurandonos que p >1
n= input('Ingrese numero de iteraciones: ')
if n>=1:
print "SUMAS: ", seriep(2,n)
else:
print " ",seriep(2,n)
print "--- Gracias ---"
### FIN PROGRAMA
EJECUCIÓN DEL PROGRAMA
Comentarios
Publicar un comentario