1)
from math import *
x = int(input())
if x < 0 :
y = cos(x)
else :
y = 1 - 2*(cos(x))^2
print(y)
2)
y = 1/(1 - (cos(x))**2)
y = 2*(cos(x))**2
Объяснение:
1)
from math import *
x = int(input())
if x < 0 :
y = cos(x)
else :
y = 1 - 2*(cos(x))^2
print(y)
2)
from math import *
x = int(input())
if x < 0 :
y = 1/(1 - (cos(x))**2)
else :
y = 2*(cos(x))**2
print(y)
Объяснение: