Please urgent help!!
write them in computer math function
Attachments:
Answers
Answered by
0
Answer in Python:
import math
x = int(input('Enter an angle in radians: '))
y = int(input('Enter another angle in radians: '))
f = math.pow(math.sin(x), 2) + math.pow(math.cos(y), 2)
i = (math.pow(5 * x**2 + math.sin(y), 1/3))/(math.pow(math.cos(x) + 11 * y**3, 1/4))
print(f)
print(i)
Explanation:
math.sin(angle) and math.cos(angle) computes the sine and cosine of an angle in radians respectively.
math.pow(base, exponent) takes two arguments base and exponent to find the power of a number.
Similar questions