cos(2x) code example
Example 1: cos 0
sin 0 = 0
cos 0 = 1
tan 0 = 0
Example 2: cos2x
import math
num = int(input("Enter an angle (in degrees)"))
print(math.cos(2*num))
sin 0 = 0
cos 0 = 1
tan 0 = 0
import math
num = int(input("Enter an angle (in degrees)"))
print(math.cos(2*num))