Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
BiseccionPython
# Halla la raiz de la función x^3 - x^2 + 2 # usando el método de bisección #Nicolás Díaz Durana #cod. 614182002 def funcion(x): return x*x*x + 4*x*x - 10 def biseccion(a,b): iteraciones = 0 c = a while ((b-a) >= 0.0001): c = (a+b)/2 if (funcion(c) == 0.0): break if (funcion(c)*funcion(a) < 0): b = c else: a = c iteraciones += 1 print("Después de " + str(iteraciones) + " iteraciones, la raiz de la función f es ","%.9f"%c) a = 1 b = 2 biseccion(a, b)
run
|
edit
|
history
|
help
0
PYTHON 3 ÖDEV :)
123
pattern
string length
pytest
Iterator-1
Chim
Toto
list_copy_shallow_deep.py
Venture