7:
result = (((24 + 31) * 5) / (2 + 6)) + (3**4 / 7)
8:
from math import sin, cos
result = (cos(0.1) / sin(0.2)) - (3 * (7.2 + 6))
9:
from math import sin, sqrt
result = ((sqrt(124) - sqrt(29)) / sin(x)) - 5**12
10:
from math import sin, cos, tan
result = tan(1.2) + cos(4) - sin(2 * x)
11:
from math import cos, sqrt
result = (sqrt(7) / 24) * (cos(x) - 10**4)
Объяснение:
7:
result = (((24 + 31) * 5) / (2 + 6)) + (3**4 / 7)
8:
from math import sin, cos
result = (cos(0.1) / sin(0.2)) - (3 * (7.2 + 6))
9:
from math import sin, sqrt
result = ((sqrt(124) - sqrt(29)) / sin(x)) - 5**12
10:
from math import sin, cos, tan
result = tan(1.2) + cos(4) - sin(2 * x)
11:
from math import cos, sqrt
result = (sqrt(7) / 24) * (cos(x) - 10**4)
Объяснение: