doctor
Гуру
(3820)
1 месяц назад
import math
result = math.pow(2, -2) - math.cos(2 * y)
print(result)
import math
x = 3
c = 2
y = 4
result = math.cos(math.pow(x, 2) - math.pow(c, 3)) - abs((7*x) / (math.pow(x, 3) - 15*x))
print(result)
import math
x = 4
result = 1 + math.sin(math.sqrt(x + 1))
print(result)
import math
x = 5
result = x - 10*math.sin(x) + abs(math.pow(x, 4) - math.pow(x, 5))
print(result)
2)Cos(x^2-c^3)-|знаменатель 7x, числительное x^3-15x|
3)1+sin корень x+1
4)x-10sin x+|x^4-x^5|