4.
import math
x = float(input("x = "))
if x<5:
f = -4*x**3 + 5*x - 12
else:
f = 3*math.sin(x) + 2*(math.cos(x))**2
print("f =","%.3f" % f)
5.
if x<1:
f = math.fabs(5-x) + math.fabs(x-7)
f = math.sqrt(3*x**2+4)/math.fabs(7*x)
Объяснение:
картинки
4.
import math
x = float(input("x = "))
if x<5:
f = -4*x**3 + 5*x - 12
else:
f = 3*math.sin(x) + 2*(math.cos(x))**2
print("f =","%.3f" % f)
5.
import math
x = float(input("x = "))
if x<1:
f = math.fabs(5-x) + math.fabs(x-7)
else:
f = math.sqrt(3*x**2+4)/math.fabs(7*x)
print("f =","%.3f" % f)
Объяснение:
картинки