1.

Please urgent help!! write them in computer math function ​

Answer»

in Python:import mathx = 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.



Discussion

No Comment Found