started Task 4
This commit is contained in:
parent
bed9e0c562
commit
d1e1daca18
|
@ -6,7 +6,7 @@ def h1(x):
|
|||
return math.sqrt(100 * math.pow(x,2) - 200 * x + 99)
|
||||
|
||||
def h1_diff(x):
|
||||
return (200 * math.pow(x, 2) - 300 * x + 99)/(math.sqrt(100 * math.pow(x, 2) - 200 * x + 99))
|
||||
return (100 * x - 100) / math.sqrt(100 * math.pow(x, 2) - 200 * x + 99)
|
||||
|
||||
def h2(x):
|
||||
return math.sqrt((10 * x - 9) * (10 * x - 11))
|
||||
|
|
Loading…
Reference in New Issue