MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / f

Function f

arithmetic_analysis/newton_method.py:11–12  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

9 x_n=x_n1
10
11def f(x):
12 return (x**3) - (2 * x) -5
13
14def f1(x):
15 return 3 * (x**2) -2

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected