Answer:
The answer is 54 cubes.
Step-by-step explanation:
For this case, what we are going to do first is to assume that all the exams are worth the same percentage of the final grade.
We have then that Lisa's average grade point equation is:
Where,
x: minimum note that lisa must obtain in the last exam.
Clearing x we have:
Answer:
the lowest grade she can get on her last test is:
x = 94
Answer:
> a<-rnorm(20,50,6)
> a
[1] 51.72213 53.09989 59.89221 32.44023 47.59386 33.59892 47.26718 55.61510 47.95505 48.19296 54.46905
[12] 45.78072 57.30045 57.91624 50.83297 52.61790 62.07713 53.75661 49.34651 53.01501
Then we can find the mean and the standard deviation with the following formulas:
> mean(a)
[1] 50.72451
> sqrt(var(a))
[1] 7.470221
Step-by-step explanation:
For this case first we need to create the sample of size 20 for the following distribution:
And we can use the following code: rnorm(20,50,6) and we got this output:
> a<-rnorm(20,50,6)
> a
[1] 51.72213 53.09989 59.89221 32.44023 47.59386 33.59892 47.26718 55.61510 47.95505 48.19296 54.46905
[12] 45.78072 57.30045 57.91624 50.83297 52.61790 62.07713 53.75661 49.34651 53.01501
Then we can find the mean and the standard deviation with the following formulas:
> mean(a)
[1] 50.72451
> sqrt(var(a))
[1] 7.470221
Answer:
a rectangle is twice as long as it is wide . if both its dimensions are increased 4 m , its area is increaed by 88 m squared make a sketch and find its original dimensions of the original rectangle
Step-by-step explanation:
Let l = the original length of the original rectangle
Let w = the original width of the original rectangle
From the description of the problem, we can construct the following two equations
l=2*w (Equation #1)
(l+4)*(w+4)=l*w+88 (Equation #2)
Substitute equation #1 into equation #2
(2w+4)*(w+4)=(2w*w)+88
2w^2+4w+8w+16=2w^2+88
collect like terms on the same side of the equation
2w^2+2w^2 +12w+16-88=0
4w^2+12w-72=0
Since 4 is afactor of each term, divide both sides of the equation by 4
w^2+3w-18=0
The quadratic equation can be factored into (w+6)*(w-3)=0
Therefore w=-6 or w=3
w=-6 can be rejected because the length of a rectangle can't be negative so
w=3 and from equation #1 l=2*w=2*3=6
I hope that this helps. The difficult part of the problem probably was to construct equation #1 and to factor the equation after performing all of the arithmetic operations.