Write the expression as the sine, cosine, or tangent of an angle.sin 9x cos x - cos 9x sin x

Answers

Answer 1
Answer:

Answer:

\sin (8x)=\sin (9x) \cos (x) - \cos (9x)\sin (x)

Step-by-step explanation:

Given : Expression \sin (9x) \cos (x) - \cos (9x)\sin (x)

To write : The given expression as the sine, cosine, or tangent of an angle?

Solution :

The given expression is in the form \sin A\cos B-\cos A \sin B

Using trigonometric identity,

\sin (A-B)=\sin A\cos B-\cos A \sin B

Substituting, A=9x , B=x

\sin (9x-x)=\sin (9x) \cos (x) - \cos (9x)\sin (x)

\sin (8x)=\sin (9x) \cos (x) - \cos (9x)\sin (x)

Therefore, The given expression is in the sin form sin(8x).

Answer 2
Answer:

Answer:

sin 8x

Step-by-step explanation:


Related Questions

What is the probability of flipping a fair coin and having 4 consecutive heads?A. 1/8B. 1/16C. 1/2D. 1/6
Elijah opens a savings account with $60. Each week after, he deposits $25. In how many weeks will he have saved $600?
Use division to find all the whole number ratios equivalent to 168 : 56
Rewrite the fraction in simplest form.10/50
Are all spheres similar?

How many months are in 47 days?

Answers

Answer:

there are 1.54 months in 47 days

Step-by-step explanation:

47 days is equal to 1.52 months. This is also 67680 minutes, 1128 hours, 47 days, 5.88 work days, 6.71 weeks, 1.52 months, And is 12.88% through the year. Converting days is used mostly to track time for different contexts. For example, days might make more sense for personal calendars while work days, weeks, and percent through the year could make more sense for financial or corporate calendars. 47 days could be calculated in multiple ways, and this page will walk you through step by step to convert 47 days to 1.52 months.

Simplify 81^1/2
Please simplify and show steps

Answers

a^(n)/(m)=\sqrt[m]{a^n}\n\n\n81^(1)/(2)=√(81)=9\n\n\n81^(1)/(2)=(9^2)^(1)/(2)=9^{2\cdot(1)/(2)}=9

The expression 81⁽¹/²⁾ simplifies to 9.

To simplify the expression 81¹/², we can evaluate the squareroot of 81.

The square root of a number x is a value that, when multiplied by itself, gives x. In this case, we're looking for the number that, when squared, equals 81.

The square root of 81 is 9 since 9 x 9 = 81.

Therefore, 81⁽¹/²⁾ simplifies to 9.

In terms of steps, we can represent the process as follows:

1. Recognize that 81⁽¹/²⁾ represents the square root of 81.

2. Evaluate the squareroot of 81, which is 9.

3. Thus, 81^(1/2) simplifies to 9.

By simplifying the expression, we find that 81⁽¹/²⁾is equal to 9.

To learn more about the expression;

brainly.com/question/24242989  

#SPJ6

Draw a sketch to help you solve this problem. Lucy had 3.2/3 kilograms of apples. She used some of the apples for a dessert. She has 1.1/3 kilogram of apples left.

How much of the apples did Lucy use for her dessert?

Answers

Lucy used 2 1/3 kilograms of apples for her dessert.

Get the whole fraction. 

3 2/3 = ((3*3) + 2) / 3 = 11/3
1 1/3 = ((3*1) + 1) / 3 = 4/3

Original weight of apples = 11/3
Remaining weight of apples = 4/3
weight of apples used = ?

Subtracting fractions:
Step 1. Make sure the denominator are the same

11/3 - 4/3

Step 2. Subtract the numerators and put the difference above the denominator

(11 - 4) / 3 = 7/3

Step 3. Simplify the fraction

7/3 = 2 1/3

Ou have learned that given a sample of size n from a normal distribution, the CL=95% confidence interval for the mean can be calculated by Sample mean +/- z((1-CL)/2)*Sample std/sqrt(n). Where z((1-cl)/2)=z(.025) is the z score.a. help(qnorm) function. Use qnorm(1-.025) to find z(.025).
b. Create a vector x by generating n=50 numbers from N(mean=30,sd=2) distribution. Calculate the confidence interval from this data using the CI formula. Check whether the interval covers the true mean=30 or not.
c. Repeat the above experiments for 200 times to obtain 200 such intervals. Calculate the percentage of intervals that cover the true mean=30. This is the empirical coverage probability. In theory, it should be very close to your CL.
d. Write a function using CL as an input argument, and the percentage calculated from question c as an output. Use this function to create a 5 by 2 matrix with one column showing the theoretical CL and the other showing the empirical coverage probability, for CL=.8, .85, .9, .95,.99.

Answers

a. To find the z score for a given confidence level, you can use the `qnorm()` function in R. The `qnorm()` function takes a probability as an argument and returns the corresponding z score. To find the z score for a 95% confidence level, you can use `qnorm(1-.025)`:

```R
z <- qnorm(1-.025)
```

This will give you the z score for a 95% confidence level, which is approximately 1.96.

b. To create a vector `x` with 50 numbers from a normal distribution with mean 30 and standard deviation 2, you can use the `rnorm()` function:

```R
x <- rnorm(50, mean = 30, sd = 2)
```

To calculate the confidence interval for this data, you can use the formula:

```R
CI <- mean(x) + c(-1, 1) * z * sd(x) / sqrt(length(x))
```

This will give you the lower and upper bounds of the 95% confidence interval. You can check whether the interval covers the true mean of 30 by seeing if 30 is between the lower and upper bounds:

```R
lower <- CI[1]
upper <- CI[2]
if (lower <= 30 && upper >= 30) {
 print("The interval covers the true mean.")
} else {
 print("The interval does not cover the true mean.")
}
```

c. To repeat the above experiment 200 times and calculate the percentage of intervals that cover the true mean, you can use a for loop:

```R
count <- 0
for (i in 1:200) {
 x <- rnorm(50, mean = 30, sd = 2)
 CI <- mean(x) + c(-1, 1) * z * sd(x) / sqrt(length(x))
 lower <- CI[1]
 upper <- CI[2]
 if (lower <= 30 && upper >= 30) {
   count <- count + 1
 }
}
percentage <- count / 200
```

This will give you the percentage of intervals that cover the true mean.

d. To write a function that takes a confidence level as an input and returns the percentage of intervals that cover the true mean, you can use the following code:

```R
calculate_percentage <- function(CL) {
 z <- qnorm(1-(1-CL)/2)
 count <- 0
 for (i in 1:200) {
   x <- rnorm(50, mean = 30, sd = 2)
   CI <- mean(x) + c(-1, 1) * z * sd(x) / sqrt(length(x))
   lower <- CI[1]
   upper <- CI[2]
   if (lower <= 30 && upper >= 30) {
     count <- count + 1
   }
 }
 percentage <- count / 200
 return(percentage)
}
```

You can then use this function to create a 5 by 2 matrix with one column showing the theoretical CL and the other showing the empirical coverage probability:

```R
CL <- c(.8, .85, .9, .95, .99)
percentage <- sapply(CL, calculate_percentage)
matrix <- cbind(CL, percentage)
```

This will give you a matrix with the theoretical CL in the first column and the empirical coverage probability in the second column.

Know more about z score here:

brainly.com/question/15016913

#SPJ11

the selling price for a classic speedboat is $1800, which is $1500 less the 2 times its original price. what was the original price

Answers

the first thing you need to do is set up the equation. from the question, you can set up this equation
1800 = 2x - 1500
from this, you need to subtract 1500 from both sides
then, you get:
3300 = 2x
to find x, divide both sides of the equation by two:
1800 = 2x - 1500
--------------------------
           2
from this, you get that x = 1650
ANSWER: x = 1650

How many minutes in a year

Answers

There are 525600 minutes in a regular year

There are 527040 minutes in a leap year


I hope that's help !