started Task 4

This commit is contained in:
schrom01 2022-10-20 15:48:24 +02:00
parent bed9e0c562
commit d1e1daca18
1 changed files with 1 additions and 1 deletions

View File

@ -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))