Answer:
20 - 60 - 135
95
Step-by-step explanation:
All you have to do is add/subtract the factors together
Answer:
5(x - 3)(x + 3)(x^2 + 3)
Step-by-step explanation:
First take out the GCF of the 3 numbers (5):-
= 5(x^4 - 6x^2 - 27)
= 5(x^2 - 9)(x^2 + 3)
= 5(x - 3)(x + 3)(x^2 + 3).
1.5 * 10 exponent -5 covert to decimal form
Answer:
The decimal form of [tex]1.5\times 10^{-5}[/tex] is [tex]0.000015[/tex].
Step-by-step explanation:
We need to convert [tex]1.5\times 10^{-5}[/tex] into decimal form. It is given in the standard form. The following steps are to be done to convert it into decimal form.
[tex]1.5\times 10^{-5}\\\\=\dfrac{15}{10}\times 10^{-5}\\\\=15\times 10^{-5}\times 10^{-1}\\\\\=15\times 10^{-5-1}\\\\=15\times 10^{-6}\\\\=\dfrac{15}{1000000}\\\\=0.000015[/tex]
So, the decimal form of [tex]1.5\times 10^{-5}[/tex] is [tex]0.000015[/tex]. Hence, this is the required solution.
Given that (-2,7) is on the graph of f(x), find the corresponding point for the function f(x + 4).
Answer:
(-6, 7)
Step-by-step explanation:
In order to make (x+4) = -2, we must have x = -6. Then the point (-6, 7) will be on the graph of f(x+4).
__
Another way to think about this is that replacing x with x-h causes the graph to be shifted right by h units. Here, we have h=-4, so the graph is shifted left 4 units. Shifting the point (-2, 7) by 4 units to the left moves it to (-2-4, 7) = (-6, 7).
Answer:
PLATO: -6,7
Step-by-step explanation:
Find the scale ratio for the map described below. 1 mm (map) equals 500 m (actual) The scale ratio is 1 to nothing.
Answer:
1:500000
Step-by-step explanation:
1 mm (map) equals 500 m (actual) .
Let's convert 500 m to mm.
1m = 1000mm
500m = 500000 mm
So 1mm to 500000mm on a scale is
1:500000
So it's all about converting the metre to million metre then doing the ratio.
In this case we are not to divide anything because it's already in 1.
So it's 1mm on paper then 500000mm on actual.
Thank you
F(x)=(x+1)(x-3)(x-4)
Answer :
x1 = -1
x2= +3
x3 = +4
I hope it helps
If you are doing it by roots how ever it would be 3
A tooth-whitening gel is to be tested for effectiveness. A group of 85 adults have volunteered to participate in the study. Of these, 43 are to be given a gel that contains the tooth-whitening chemicals. The remaining 42 are to be given a similar-looking package of gel that does not contain the tooth-whitening chemicals. A standard method will be used to evaluate the whiteness of teeth for all participants. Then the results for the two groups will be compared. 1. After the treatment period, compare the whiteness of the 43 treated adults. 2. A placebo is not being used. 3. After the treatment period, compare the whiteness of the two groups. 4. Randomly select 85 adults to be given the treatment gel. 5. The remaining 42 adults receive the placebo gel. 6. Randomly select 43 adults to be given the treatment gel.
Answer:
(a) 3, 5 and 6
Step-by-step explanation:
In the experiment, 43 are to be given a gel that contains the tooth-whitening chemicals while the remaining 42 are to be given a placebo. Therefore, a placebo is used.
The 43 that will receive the gel are to be selected randomly.
After the experiment, the whiteness of the two groups will be compared to see the effect of the gel.
Therefore for the experiment to be completely random, 3, 5, and 6 apply.
(b)
For the experiment to be double-blind, the researchers who will evaluate the whiteness and interact with the subjects, and the subjects would not know which subjects received either the whitening gel or the placebo.
In which figure is point G an orthocenter? Triangle A B C is a right triangle. Lines are drawn from each point to the opposite side and intersect at point G. Triangle F D E is shown. Lines are drawn from each point to the opposite side and intersect at point G. The lines cut each side into 2 equal parts. Triangle L M N is shown. Lines are drawn from each point to the opposite side and intersect at point G. Each angle has a different measure. Triangle H J K is shown. Lines are drawn from each point to the opposite side to form right angles and the lines intersect at point G
Answer:
ΔHJK; Lines are drawn from each point to the opposite side to form right angles and the lines intersect at point G
Step-by-step explanation:
The orthocenter is the point of intersection of altitudes. Each altitude is orthogonal to the corresponding base, so the use of "ortho-" can help you remember.
The appropriate choice is ...
ΔHJK shown: Lines are drawn from each point to the opposite side to form right angles and the lines intersect at point G.
Answer:
in short terms its D. i got it right
Step-by-step explanation:
Identify the steps used in Algorithm 1 to find the maximum element in the following finite sequence 1, 8, 12, 9, 11, 2, 14, 5, 10, 4.
Algorithm 1 procedure max(a1, a2, . . . , an : integers) max :______
Answer:
max(1, 8, 12, 9, 11, 2, 14, 5, 10, 4) = 14
Step-by-step explanation:
Here is the algorithm to find the maximum element:
procedure max(a1, a2, . . . , an : integers)
max := a1
for i := 2 to n
if max < ai then max := ai
return max{max is the largest element}
Now lets see how this algorithm works with the given sequence. 1, 8, 12, 9, 11, 2, 14, 5, 10, 4.
The value of max is set to 1. So max = 1.Now the for loop starts. The loop variable i which works as an index moves throughout the sequence i.e. from 2 to n. The value of n is 10 since the total number of elements in the sequence are 10. The first iteration: i=2. Now the IF condition if max < ai inside this FOR loop checks if the value of max is less than the element at i-th position. As the current value of max=1 and the value at i=2 is 8 which means the second element of the sequence. So this condition evaluates to true as 1 < 8. So the IF part is executed which has a statement max := ai which means if the value of max is less than the element at i-th index then the value of max is set to that element. So max = 8.The second iteration: at i = 3. Now the IF condition if max < ai checks if the value of max is less than the element at i-th position. As the current value of max= 8 and current value of i=3 means the third element of the sequence which is 12. So this condition evaluates to true as 8 < 12. So the IF part is executed which has a statement max := ai which means if the value of max is less than the element at i-th index then the value of max is set to that element. So max = 12.The third iteration at i = 4. Now the IF condition if max < ai checks if the value of max is less than the element at i-th position. As the current value of max= 12 and current value of i=4 means the fourth element of the sequence which is 9. Now the IF condition evaluates to false because 12 > 9. Hence the value of max remains the same. So max = 12.The fourth iteration at i = 5. Now the IF condition if max < ai checks if the value of max is less than the element at i-th position. As the current value of max= 12 and current value of i=5 means the fifth element of the sequence which is 11. Now the IF condition evaluates to false because 12 > 11. Hence the value of max remains the same. So max = 12.The fifth iteration at i = 6. Now the IF condition if max < ai checks if the value of max is less than the element at i-th position. As the current value of max= 12 and current value of i=6 means the sixth element of the sequence which is 2. Now the IF condition evaluates to false because 1 2> 2. Hence the value of max remains the same. So max = 12.The sixth iteration at i = 7. Now the IF condition if max < ai checks if the value of max is less than the element at i-th position. As the current value of max= 12 and current value of i=7 means the seventh element of the sequence which is 14. So this condition evaluates to true as 14 < 12. So the IF part is executed which has a statement max := ai which means if the value of max is less than the element at i-th index then the value of max is set to that element. So max = 14.The seventh iteration at i = 8. Now the IF condition if max < ai checks if the value of max is less than the element at i-th position. As the current value of max= 14 and current value of i=8 means the eighth element of the sequence which is 5. Now the IF condition evaluates to false because 1 4> 5. Hence the value of max remains the same. So max = 14.The eighth iteration at i = 9. Now the IF condition if max < ai checks if the value of max is less than the element at i-th position. As the current value of max= 14 and current value of i=9 means the ninth element of the sequence which is 10. Now the IF condition evaluates to false because 1 4> 10. Hence the value of max remains the same. So max = 14.The ninth iteration at i = 10. Now the IF condition if max < ai checks if the value of max is less than the element at i-th position. As the current value of max= 14 and current value of i=10 means the tenth element of the sequence which is 4. Now the IF condition evaluates to false because 1 4> 4. Hence the value of max remains the same. So max = 14.Now the loop ends as the value of i now becomes 11 because the loop is execute at i from 2 to n and value of n = 10. So the loop breaks and the next statement return max{max is the largest element} is executed which returns the current value of max. This means it returns the largest element in the sequence. Since the current value of max = 14. Hence max = 14 is the largest element.Any help would be great
Answer:
I don't know
Step-by-step explanation:
sorry I can't help,use a calculator
Answer:
58.5 miles
Step-by-step explanation:
Let's Use unitary Method
8 hours = 52 miles
Then,
1 hour = 52/8 miles
1 hour = 6.5 miles
Multiplying both sides by 9, We'll get
9 hours = 6.5 × 9 miles
9 hours = 58.5 miles
When a basketball player makes a trip to the free throw line, he takes two consecutive shots. It is often wondered
whether these two shots are independent or dependent: does the probability of making the second free throw depend
on whether a player makes the first free throw?
After analyzing data for Lebron James, statisticians determined that his first and second free throws are entirely
independent events. The frequency table below shows the data that analysts used to determine this independence.
Answer:
144364812Step-by-step explanation:
Since the shots are independent, they have the same ratio across the row and down the column as the totals have. Ratios in the same row are 3:1; ratios in the same column are 4:1.
(1st shot, 2nd shot) = (makes, makes) = 144
= (makes, misses) = 180-144 = 36
= (misses, makes) = 192-144 = 48
= (misses, misses) = 60-48 = 12
(12 points) In Africa, the Joint United Nations Programme on HIV/AIDS determined that the probability that an individual adult in Africa has the disease is 0.05. Assume for any HIV test, the probability that the test result is positive given a real HIV carrier is 0.98, and the probability that the test result is positive given a healthy individual (i.e., a person who does not carry HIV virus) is 0.05. (a) (5 pts) What is the probability that a test result will be negative
Answer:
90.35% probability that a test result will be negative
Step-by-step explanation:
We have these following probabilities:
0.05 = 5% probability that an individual adult has the disease.
If the adult has the disease, 1 - 0.98 = 0.02 = 2% probability of a negative test.
1 - 0.05 = 0.95 = 95% probability that an individual adult does not have the disease.
If the adult does not have the disease, 1 - 0.05 = 0.95 = 95% probability of a negative test.
What is the probability that a test result will be negative
2% of 5% or 95% of 95%. So
p = 0.02*0.05 + 0.95*0.95 = 0.9035
90.35% probability that a test result will be negative
What is the slope-intercept form of the equation 6x-3y=18
Answer:
Step-by-step explanation:
Saying "put an equation into slope-intercept form" is another way of saying, "solve this equation for y". Not 6y or -3y...just plain old ordinary positive y. In order to begin that process, we need to first isolate the term that has the y in it. We do that by subtracting 6x from both sides to get
-3y = -6x + 18
Now, again, we are not solving for -3y, just y. We do that by dividing both sides by -3 to get
[tex]y=\frac{-6x}{-3}+\frac{18}{-3}[/tex]
Simplifying that gives us
y = 2x - 6
Can some help me if your good at maths
Answer:
36=2×3×3×3
36=2×3³Answer
[tex]36 = 2 \times 2 \times 3 \times 3 \\ \: \: \: \: \: \: \: \: = {2}^{2} \times {3}^{2} [/tex]
Step-by-step explanation:
First write the prime factors of 36 that you can see here
[tex]2 \: \: \: 2 \: \: \: 3 \: \: \: 3[/tex]
Now write 36 as a product of its prime factors.
[tex]36 = 2 \times 2 \times 3 \times 3 \\ \: \: \: \: \: \: \: \: = {2}^{2} \times {3}^{2} [/tex]
Some equilateral triangles are not isosceles.
O A. True
O
B. False
Answer: B. false
Step-by-step explanation:
An equilateral triangle has 3 equal sides
Isosceles triangle has two equal sides.
Which means that equilateral triangles cannot become isosceles.
Answer:
False
Step-by-step explanation:
An equilateral triangle has all three sides equal
An isosceles triangle has at least 2 sides equal
An equilateral triangle is a special isosceles triangle
A simulated exercise gave n = 20 observations on escape time (sec) for oil workers, from which the sample mean and sample standard deviation are 370.42 and 25.74, respectively. Suppose the investigators had believed a priori that true average escape time would be at most 6 min. Does the data contradict this prior belief? Assuming normality, test the appropriate hypotheses using a significance level of .05. (Give t to 2 decimal places and the p-value to 3 decimal places.)t =P-value =ConclusionReject the null hypothesis, there is significant evidence that true average escape time exceeds 6 min. Reject the null hypothesis, there is not significant evidence that true average escape time exceeds 6 min. Fail to reject the null hypothesis, there is not significant evidence that true average escape time exceeds 6 min. Fail to reject the null hypothesis, there is significant evidence that true average escape time exceeds 6 min.
Answer:
Reject the null hypothesis, there is significant evidence that true average escape time exceeds 6 min.
Step-by-step explanation:
In this case we need to test whether the data contradict the prior belief that the true average escape time for oil workers would be at most 6 min or 360 seconds.
The information provided is:
[tex]n=20\\\bar x=370.42\\s=25.74\\\alpha =0.05[/tex]
The hypothesis for the test can be defined as follows:
H₀: The true average escape time for oil workers is more than 360 seconds, i.e. μ > 360.
Hₐ: The true average escape time for oil workers is at most 360 seconds, i.e. μ ≤ 360.
As the population standard deviation is not known we will use a t-test for single mean.
Compute the test statistic value as follows:
[tex]t=\frac{\bar x-\mu}{\s/\sqrt{n}}=\frac{370.42-360}{25.74/\sqrt{20}}=1.81[/tex]
Thus, the test statistic value is 1.81.
Compute the p-value of the test as follows:
[tex]\text{p-value}=P(t_{n-1}<t)[/tex]
[tex]=P(t_{20-1}<1.81)\\\\=P(t_{19}<1.81)\\\\=0.044[/tex]
*Use a t-table.
Thus, the p-value of the test is 0.044.
Decision rule:
If the p-value of the test is less than the significance level then the null hypothesis will be rejected and vice-versa.
p-value = 0.044 < α = 0.05
The null hypothesis will be rejected at 5% level of significance.
Thus, concluding that the true average escape time would be at most 6 min.
One of the questions in a study of marital satisfaction of dual-career couples was to rate the statement, "I'm pleased with the way we divide the responsibilities for childcare." The ratings went from 1 (strongly agree) to 5 (strongly disagree). The table below contains ten of the paired responses for husbands and wives. Conduct a hypothesis test at the 5% level to see if the mean difference in the husband's versus the wife's satisfaction level is negative (meaning that, within the partnership, the husband is happier than the wife). Wife's score 2 2 3 3 4 2 1 1 2 4 Husband's score 2 1 2 3 2 1 1 1 2 4 NOTE: If you are using a Student's t-distribution for the problem, including for paired data, you may assume that the underlying population is normally distributed. (In general, you must first prove that assumption, though.)
(1) State the distribution to use for the test. (Enter your answer in the form z or tdf where df is the degrees of freedom.)
(2) What is the test statistic? (If using the z distribution round your answer to two decimal places, and if using the t distribution round your answer to three decimal places.)
(3) What is the p-value? (Round your answer to four decimal places.)
(4) Alpha (Enter an exact number as an integer, fraction, or decimal.)
α =
Answer:
(a) The test statistic would follow a t distribution with n - 1 = 10 - 1 = 9 degrees of freedom.
(b) The test statistic is -2.2361.
(c) The p-value of the test is 0.026.
(d) α = 0.05.
Step-by-step explanation:
In this case a hypothesis test is to be performed to determine whether the mean difference in the husband's versus the wife's satisfaction level is negative.
(a)
The data provided is paired data.
So a paired t-test would be used.
The test statistic would follow a t distribution with n - 1 = 10 - 1 = 9 degrees of freedom.
The hypothesis can be defined as follows:
[tex]\text{H}_{0}:\ \mu_{d}=0\\\\\text{H}_{a}:\ \mu_{d}<0[/tex]
(b)
Compute the test statistic as follows:
[tex]t=\frac {\bar d-\mu_{d}}{\sigma_{d}/\sqrt{n}}[/tex]
[tex]=\frac{-0.50-0}{0.7071/\sqrt{10}}\\\\=-2.2360894\\\\\approx -2.2361[/tex]
The test statistic is -2.2361.
(c)
Compute the p-value as follows:
[tex]p-value=P(t_{n-1}<t)\\\\=P(t_{9}<-2.2361)\\\\=0.026[/tex]
The p-value of the test is 0.026.
(d)
It is provided that the significance level of the test is, α = 0.05.
HELP! What is the solution to the equation below? Round your answer to two decimal places. 4x = 20 A. x = 2.99 B. x = 0.46 C. x = 1.30 D. x = 2.16
Answer:
X = 5
Step-by-step explanation:
If 4x = 20
And we are asked to find the solution.
It simply means looking for the value of x
So
4x = 20
X = 20/4
X = 5
X is simply the solution
X = 5
Answer:
D 2.16
Step-by-step explanation:
a p e x just use log
Which function has the same range?
Answer:
I would say the second one
Step-by-step explanation:
f(x) has a range of y<0, because it is reflected over the x axis
g(x) = -5/7(3/5)^-x is also reflected over the x axis, except also in the y axis. Regardless of the reflection in the y-axis, y still cannot be equal to or greater than 0. Therefore, I believe it is the second choice.
(The third and forth choice are the same, which rules them both out. The first on reflects it over the y-axis, meaning that x can be greater than 0.)
Write the equation represents the line.
Answer:
y = 3/4x+2
Step-by-step explanation:
The change in y over change in x of the two points given is 3/4, which is the slope. The line intersects with the y axis at 2, making 2 the y-int
Can someone answer this
Answer:
Step-by-step explanation:
x 6 a
8 48 c
-4 b 20
Let the unknown numbers of the multiplication grid are a, b and c.
1). 6 × 8 = 48
2). (-4)×6 = b
b = -24
3). (-4) × a = 20
a = -5
4). 8 × a = c
8 × (-5) = c
c = -40
Therefore, missing in the given multiplication grid are,
x 6 -5
8 48 -40
-4 -24 20
Find the volume of the following solid figure. Use = 3.14.
V = 4/313. A sphere has a radius of 3.5 inches.
Answer:
V = 51.3 in.³
Step-by-step explanation:
Volume of Sphere = [tex]\frac{4}{3} \pi r^3[/tex]
Where r = 3.5
So,
V = [tex]\frac{4}{3} (3.14)(3.5)^3[/tex]
V = [tex]\frac{4}{3} (3.14)(12.25)[/tex]
V = [tex]\frac{153.9}{3}[/tex]
V = 51.3 in.³
Using the order of operations, what should be done first to evaluate 12 divided by (negative 6) (3) + (negative 2)? Divide 12 by 5. Multiply –6 and 3. Divide 12 by –6. Add 3 and –2.
Answer:
first you need to multiply -6 and 3
Answer:
-6 and 3
Step-by-step explanation:
sorry it was an late answer I'm just tryna gain points :D
Two contractors will jointly pave a road, each working from one end. If one of them paves 2/5 of the road and the other 81 km remaining, the length of that road is
The television show 50 Minutes has been successful for many years. That show recently had a share of 20, meaning that among the TV sets in use, 20% were tuned to 50 Minutes. Assume that an advertiser wants to verify that 20% share value by conducting its own survey, and a pilot survey begins with 14 households have TV sets in use at the time of a 50 Minutes broadcast. Find the probability that none of the households are tuned to 50 Minutes.
Answer:
The probability that none of the households are tuned to 50 Minutes is 0.04398.
Step-by-step explanation:
We are given that the television show 50 Minutes has been successful for many years. That show recently had a share of 20, meaning that among the TV sets in use, 20% were tuned to 50 Minutes.
A pilot survey begins with 14 households have TV sets in use at the time of a 50 Minutes broadcast.
The above situation can be represented through binomial distribution;
[tex]P(X = r)= \binom{n}{r} \times p^{r} \times (1-p)^{n-r} ;x = 0,1,2,3,.........[/tex]
where, n = number of samples (trials) taken = 14 households
r = number of success = none of the households are tuned to 50 min
p = probability of success which in our question is probability that households were tuned to 50 Minutes, i.e. p = 20%
Let X = Number of households that are tuned to 50 Minutes
So, X ~ Binom(n = 14, p = 0.20)
Now, the probability that none of the households are tuned to 50 Minutes is given by = P(X = 0)
P(X = 0) = [tex]\binom{14}{0} \times 0.20^{0} \times (1-0.20)^{14-0}[/tex]
= [tex]1 \times 1 \times 0.80^{14}[/tex]
= 0.04398
A fort had enough food for 80 soldiers for 60 days .How long would the food last if 20 more soliders join after 15 days ?
Answer:
The food would last 51 days
Step-by-step explanation:
After 15 days are over, you could say that the 16th day would be as follows -
80 soldiers, food finished in 60 - 15 = 45 days.
If 20 more soldiers arrive, there would be a total of 100 soldiers, so if 80 soldiers can finish their food in 45 days - 1 soldier can finish = 45 * 80. Respectively, 100 soldiers can consume their food in ( 45 * 80 ) / 100 = 36 days.
As 15 days are already over, adding 36 more days = 51 days
The food would last 51 days if 20 more soldiers join after 15 days
There are several possible ways to answer this question, but I hope that explanation helps!
Answer:
A total of 51 days, or 36 days after the extra soldiers join in.
Step-by-step explanation:
Let's say a soldier eats 1 portion of food in 1 days. That portion may be divided into breakfast, lunch , and dinner, but it is still accounted as 1 portion per soldier per day.
There are 80 soldiers and enough food for 60 days.
The number of portions is
60 * 80 = 4800
The fort started with 4800 portions.
80 soldiers ate their portions for 15 days.
80 * 15 = 1200
After 15 days, they have
4800 - 1200 = 3600 portions left.
After 15 days, 20 more soldiers joined in.
Now there are 80 + 20 = 100 soldiers.
There are 3600 portions left for 100 soldiers.
3600/100 = 36
The food would last 36 days after the 15 days, or a total of 51 days.
Mary is selling chocolate bars to raise money. She earns $3 for each solid milk chocolate bar sold and $4 for each caramel-filled bar sold. If m represents the number of milk chocolate bars sold, and c represents the number of caramel bars sold, which of the following expressions represents the amount of money that Mary has raised? Question 6 options: A) 3m – 4c B) m∕3 + i∕4 C) 12mc D) 3m + 4c
Answer:
3m + 4c
Step-by-step explanation:
Whenever a word problem says the word earn that means the slope, also known as the rate of change, will be positive. Knowing this you can determine that both the caramel and milk chocolate slopes will be positive. After figuring all that out the only thing left to do is to make the equation. You know you have two slopes, and each slope needs a variable, so you will have to look back at the question. It is given that m represents the milk chocolate and c represents the caramel. Now all you have to do is make the slope the coefficient to the corresponding variable. The milk chocolates are 3 dollars, so the 3 goes in front of the m and the caramel chocolates are 4 dollars, so teh 4 goes in front of the 4. Since both slopes are positive no negatives or minus signs will be used in the equation. Knowing all this information you can now create the expression 3m + 4c.
Answer:
D
Step-by-step explanation:
3m + 4c
Need help ASAP thankyou!!!!
Answer:
V =100.48 cm^3
Step-by-step explanation:
The volume of a cone is given by
V = 1/3 pi r^2 h
V = 1/3 pi ( 4)^2 6
V = 1/3 pi ( 16)*6
V =32 pi cm^3
Let pi 3.14
V =100.48 cm^3
Answer:
Volume = [tex]100.48 \,\,cm^3[/tex]
Step-by-step explanation:
Recall that the volume of the cone is given by the formula:
[tex]Volume=\frac{1}{3} Base * Height[/tex]
that is, one third of the product of the triangles base area times the triangle's height. In this case, the area of the base is a circle of radius 4 cm which using the formula for the area of the circle gives:
[tex]\pi\,R^2=\pi\,(4\,\.cm)^2=16\,\pi\,\,cm^2[/tex]
using this expression for the base in the volume formula, as well as the height of the cone (6 cm) it renders:
[tex]Volume=\frac{1}{3} \,16\,\pi\,(6)\,\,cm^3=32\,\pi\,\, cm^3=100.48 \,\,cm^3[/tex]
what is the volume of a cone with the given dimensions. radius=4 cm; height= 10 cm
Answer:
[tex] 167.47 \: {cm}^{3} [/tex]
Step-by-step explanation:
[tex]V_{cone} = \frac{1}{ 3} \pi {r}^{2}h \\ \\ = \frac{1}{ 3} \pi \times {4}^{2} \times 10 \\ \\ = \frac{1}{ 3} \times 3.14 \times 16 \times 10 \\ \\ = \frac{1}{ 3} \times \: 502.4 \\ \\ = 167.466667 \\ \\ = 167.47 \: {cm}^{3} [/tex]
Birth weights at a local hospital have a Normal distribution with a mean of 110 oz and a standard deviation of 15 oz. The proportion of infants with birth weights between 125 oz and 140 oz is:
Answer:
The proportion of infants with birth weights between 125 oz and 140 oz is 0.1359 = 13.59%.
Step-by-step explanation:
When the distribution is normal, we use the z-score formula.
In a set with mean [tex]\mu[/tex] and standard deviation [tex]\sigma[/tex], the zscore of a measure X is given by:
[tex]Z = \frac{X - \mu}{\sigma}[/tex]
The Z-score measures how many standard deviations the measure is from the mean. After finding the Z-score, we look at the z-score table and find the p-value associated with this z-score. This p-value is the probability that the value of the measure is smaller than X, that is, the percentile of X. Subtracting 1 by the pvalue, we get the probability that the value of the measure is greater than X.
In this question, we have that:
[tex]\mu = 110, \sigma = 0.15[/tex]
The proportion of infants with birth weights between 125 oz and 140 oz is
This is the pvalue of Z when X = 140 subtracted by the pvalue of Z when X = 125. So
X = 140
[tex]Z = \frac{X - \mu}{\sigma}[/tex]
[tex]Z = \frac{140 - 110}{15}[/tex]
[tex]Z = 2[/tex]
[tex]Z = 2[/tex] has a pvalue of 0.9772
X = 125
[tex]Z = \frac{X - \mu}{\sigma}[/tex]
[tex]Z = \frac{125 - 110}{15}[/tex]
[tex]Z = 1[/tex]
[tex]Z = 1[/tex] has a pvalue of 0.8413
0.9772 - 0.8413 = 0.1359
The proportion of infants with birth weights between 125 oz and 140 oz is 0.1359 = 13.59%.
4. The area of a rhombus with one diagonal is 8.72 cm long is the same as the area of a square of side 15.6 cm. Find the length of the other diagonal of the rhombus.
Answer:
55.82 cm
Step-by-step explanation:
d1= 8.72 cm
a= 15.6 cm
A rhombus= 1/2*d1*d2 = A square
A square= 15.6²= 243.36 cm²
d2= 2A/d1= 2*243.36/8.72 ≈55.82 cm
Two clinical trials were designed to test the effectiveness of laser treatment for acne. Seaton et al. (2003) randomly divided participants into two groups. One group received the laser treatment, whereas the other group received a sham treatment. Orringer et al. (2004) used an alternative design in which laser treatment was applied to one side of the face, randomly chosen, and the sham treatment was applied to the other side. The number of facial lesions was the response variable.
Orringer et al. used _______________ in a ___________ design.
Seaton et al. used a completely _____________design.
Answer:
Blocking in a paired design
Completed randomized design
Step-by-step explanation:
Orringer et. al used blocking in a paired design. He use the special type of randomized block design; a matched pair design wherein there is just two treatment conditions (laser treatment and the sham treatment) and the subjects are then group the subjects in pairs using the blocking variable which is a treatment applied to one side of face randomly chosen.
While Seaton et. al. used a completely randomized design. Here the subjects/participants are just merely assigned albeit randomly to either the laser or the sham treatment.