Answer:
<h2>The answer is option C</h2>
Step-by-step explanation:

Using trigonometric identities
That's

Rewrite the expression
That's

Simplify
We have

So we have
3( - 1)
We have the final answer as
<h2>- 3</h2>
Hope this helps you
Because if the number was rational then we can tell by looking at the numbers. The rational number should be one number or a repeating decimal or terminating number. plus because if a number was like this 5.7696... that means its irrational because we dont know the end of the number. The rational numbers are terminating numbers or either decimal or repeating numbers because we know the end of those numbers.
Answer:
public class MovieRental
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of movie rentals: ");
int movieRentals = in.nextInt();
System.out.print("Enter the number of members referred to the video club: ");
int memberReferral = in.nextInt();
in.close();
double discountVal = Math.min(movieRentals + memberReferral, 75);
System.out.println("The discount is equal to: " + discountVal);
}
}