Which is the best estimate for the quotient 203.12 divided by 48.011 ? My choices are; (A) 4 (B) 40 (C) 400 (D) 4,000

Answers

Answer 1
Answer: 203.12 \approx 200 \n48.011 \approx 50 \n \n203.12 / 48.011 \approx 200 / 50=\boxed{4} \Leftarrow \hbox{answer A}

Related Questions

Multiply. Check picture.
Can someone please help
A foreman for an injection-molding firm admits that on 55% of his shifts, he forgets to shut off the injection machine on his line. This causes the machine to overheat, increasing the probability that a defective molding will be produced during the early morning run from 3% to 15%. The plant manager randomly selects a molding from the early morning run and discovers it is defective. What is the probability that the foreman forgot to shut off the machine the previous night?
if a one time contribution of $2400 is deposited into an anually compounding account with a 2.9% interest rate, how much will be in the account after 2 years?
WHAT IS 4.9% AS A DECIMAL AND A FRACTION

What is the percent of change from 45 to 56 round to the nearest percent

Answers

Step-by-step explanation:

This problem is not about percent or relative change, but about absolute change. Its solution is very simple:

Absolute change, or

change = new value - old value

= 56 - 45 = 11 (increase)

If there are 5 family members all exchanging gifts, how many gifts are exchanged?If you could give an explanation too, that would be great! Thanks so much!

Answers

I think 20 gifts would be exchanged because each family member has to exchange 1 gift to everyone

What are you required to do when you buy in bulk to save money?  a. purchase a minimum number of items
b. purchase a large quantity of an item
c. commit to buy more in the future

Answers

The answer will be B

Hope this helped, and please mark brainliest! :)
B. Because when you buy a minimum number of items it's will cost more in the long run then just buying the larger one. Larger things a generally cheaper than that amount in small packages.

F(x) = 3x + 2 g(x) = 2x^2 - 4x
h(x) = x^2 - x + 7

Find f[g(5)]

A. 92
B. 2
C. 30
D. 242

Answers

Answer:

A

Step-by-step explanation:

Evaluate g(5), then use the value obtained to evaluate f(x) , that is

g(5) = 2(5)² - 4(5) = 2(25) - 20 = 50 - 20 = 30, then

f(30) = 3(30) + 2 = 90 + 2 = 92

What is the solution to the system of equations graphed below? y = x - 2 y = 4x - 5

Answers

There are 3 available methods - Substitution , Elimination and Matrix.  

The substitution method is used to eliminate one of the variables by replacement. 

The elimination method is used for solving linear systems. 

A Matrix is an array of numbers. 

Lets use Substitution to solve this system. 

x-2=4x-5 

-2=4x-5-x 

-2=(4x-x)-5 

-2=3x-5 

-2+5=3x 

3=3x 

3=3x / 3 

x=1 

Now substitute x=1  

y=x-2 

y=1-2 

y=-1 

Hence - x=1 y=-1 

Answer:

1, -1

Step-by-step explanation:

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