Generation

generate functionTue, 04 Apr 2023

método de bisección 𝑚(𝑥) = √𝑥 2 + 1 − tan(x)

def biseccion(x): return math.sqrt(x ** 2 + 1) - math.tan(x)

Questions about programming?Chat with your personal AI assistant