started Task 4

This commit is contained in:
schrom01 2022-10-20 16:22:11 +02:00
parent ecd625aaff
commit 26b3523b4d
1 changed files with 3 additions and 1 deletions

View File

@ -9,8 +9,10 @@ def h1(x):
except: except:
return return
def h1_diff(x): def h1_diff(x):
return (100 * x - 100) / math.sqrt(100 * math.pow(x, 2) - 200 * x + 99)
def h2_diff(x):
return (100 * x - 100) / math.sqrt((10*x-11)*(10*x-9)) return (100 * x - 100) / math.sqrt((10*x-11)*(10*x-9))
def h2(x): def h2(x):