Язык не указан, поэтому сделал на Python.
Использовался Python 3.7.2
2)
from math import cos, sin, sqrt
x = int(input("Введите x >>>"))
print("y=", cos(4*sqrt(x)+1))
print("y'=", (-2)*sin(4*sqrt(x)+1)/sqrt(x))
3)
print("y=", (x/7-3)**7)
print("y'=", (x/7-3)**6)
4)
from math import tan, cos
print("y=", 0.5 * tan(2*x))
print("y'=", 1/(cos(2*x))**2)
Не забывайте нажать " ", поставить оценку и, если ответ удовлетворил, то выберите его как "Лучший"
Успехов в учебе
Язык не указан, поэтому сделал на Python.
Использовался Python 3.7.2
2)
from math import cos, sin, sqrt
x = int(input("Введите x >>>"))
print("y=", cos(4*sqrt(x)+1))
print("y'=", (-2)*sin(4*sqrt(x)+1)/sqrt(x))
3)
x = int(input("Введите x >>>"))
print("y=", (x/7-3)**7)
print("y'=", (x/7-3)**6)
4)
from math import tan, cos
x = int(input("Введите x >>>"))
print("y=", 0.5 * tan(2*x))
print("y'=", 1/(cos(2*x))**2)
Не забывайте нажать " ", поставить оценку и, если ответ удовлетворил, то выберите его как "Лучший"
Успехов в учебе