Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program that tests trigonometry knowledge. The program should ask the user what the values of sin(),cos(/2) and sin(/6) are. It then calculates the
Write a program that tests trigonometry knowledge. The program should ask the user what the values of sin(),cos(/2) and sin(/6) are. It then calculates the values using functions and pi value from the math module, and checks if the results are equal to the user's answers. The program prompts should be: Enter the value of sin(/2) : Enter the value of cos() : Enter the value of sin(/6) : Notes: - The output must be in the format shown in the example, including the format of the prompt, and all spaces and punctuation. - Remember that float values might not be precise. Your program should allow a tolerance of 0.001 (i.e., an answer is correct if the absolute difference between the actual and submitted answer is equal to or less than 0.001). - You can use the math.isclose() function to compare if 2 float numbers are close with a specific tolerance, as demonstrated in the course video "Comparing Floating-Point Numbers". - You need to print the pi symbol by using its Unicode code: \u03C0. - You do not need to import the math module as it has already been done for you. For example
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started