A particular type of 4th grade Achievement Test provides overall scores that are normally distributed with a mean of 50 and a standard deviation of 10.
What is the probability that a randomly selected student earns a score between 33 and 48?

Answers

Answer 1

Answer:

The probability that a randomly selected student earns a score between 33 and 48 is 0.3761

Step-by-step explanation:

We compute the z-score related to some value x as [tex]z=\frac{x-50}{10}[/tex]. The z-score related to 33 is given by [tex]z_{1}=\frac{33-50}{10}=-1.7[/tex] and the z-score related to 48 is given by [tex]z_{2}=\frac{48-50}{10}=-0.2[/tex]. Therefore, the probability that a randomly selected student earns a score between 33 and 48 is given by P(-1.7 < Z < -0.2) = P(Z < -0.2) - P(Z < -1.7) = 0.4207 - 0.0446 = 0.3761.

Answer 2

The probability is 0.3761 (a) that a student scores between 33 and 48 on the 4th grade Achievement Test.

To find the probability that a randomly selected student earns a score between 33 and 48 on the 4th grade Achievement Test, we need to use the properties of the normal distribution.

Step 1 :

**Standardize the Scores**:

  First, we need to standardize the scores using the formula for z-score:

    [tex]\[ z = \frac{x - \mu}{\sigma} \][/tex]

  where:

  - ( x ) is the score we want to find the probability for,

  - [tex]\( \mu \)[/tex] is the mean (50 in this case),

  - [tex]\( \sigma \)[/tex] is the standard deviation (10 in this case).

  For the lower score [tex]\( x = 33 \)[/tex]:

  [tex]\[ z_{\text{lower}} = \frac{33 - 50}{10} = -1.7 \][/tex]

  For the upper score [tex]\( x = 48 \)[/tex]:

  [tex]\[ z_{\text{upper}} = \frac{48 - 50}{10} = -0.2 \][/tex]

Step 2:

**Find the Probability**:

  Once we have the standardized scores, we can use a standard normal distribution table or a calculator to find the probabilities associated with these z-scores.

  From the z-table or calculator, we find:

  - For [tex]\( z_{\text{lower}} = -1.7 \)[/tex], the corresponding probability is approximately 0.0446.

  - For [tex]\( z_{\text{upper}} = -0.2 \)[/tex], the corresponding probability is approximately 0.4207.

Step 3 :

**Calculate the Probability Between the Scores**:

  To find the probability between the two scores, we subtract the probability corresponding to the lower score from the probability corresponding to the upper score:

   [tex]\[ \text{Probability} = \text{Probability}(x < 48) - \text{Probability}(x < 33) \][/tex]

   [tex]\[ \text{Probability} = 0.4207 - 0.0446 \][/tex]

   [tex]\[ \text{Probability} = 0.3761 \][/tex]

So, the correct option is: a) .3761

Complete Question :

A particular type of 4th grade Achievement Test provides overall scores that are normally distributed with a mean of 50 and a standard deviation of 10.                                                                                                           What is the probability that a randomly selected student earns a score between 33 and 48?

a) .3761

b) .4207

c) .4653

d) .0446


Related Questions

99 POINTS BRAINLIEST!! no fake answers please!

In a game, you have a 1/36 probability of winning $94 and a 35/36 probability of losing $8. What is your expected value?

ALSO ANSWER QUESTIONS IN PICTURE, THANK YOU

Answers

I think the answer would be -$5.17 because you would have to find the unexpected value.

I think the answer to this picture is 0.122

Game:

1/36(94) + 35/36(-8) = 94/36 -280/36 = -186/36 = -5.17

4. Add the probabilities together for 5 and under:

0.122 + 0.061 + 0.022 + 0.006 + 0.001 = 0.212

Airline :

Given: P = 70, P = 97% = 0.97, q = 1-0.97 = 0.03

Probability of being greater than 68:

(70 * 0.97^69 * 0.03^1) + (1*0.97^70*1)

= 0.2567 + 0.1185

= 0.375

Consider the following class declaration: class Thing { private: int x; int y; static int z; public: Thing() { x = y = z; } static void putThing(int a) { z = a; } }; int Thing:: z = 0: Assume a program containing the class declaration defines three Thing objects with the following statement: Thing one, two, three; A) How many separate instances of the x member exist? B) How many separate instances of the y member exist? C) How many separate instances of the z member exist? D) What value will be stored in the x and y members of each object?

Answers

Final answer:

There are 3 individual instances of each of the 'x' and 'y' members, while there's only one instance of static member 'z'. The value of 'x' and 'y' members in each object is 0.

Explanation:

The subject of this question pertains to class declarations in the field of programming, with a focus on how variables are instantiated among objects of a class. Specifically, the interest is on the number of instances and values of private and static member variables in the class Thing which includes private int x, private int y and static int z.

A) For every new object created from the class Thing, new instances of x are also created. Since Thing one, two, three created three objects, that means there are three separate instances of the x member.B) Similar to x, there are also three separate instances of the y member, since it is an non-static member variable, and each object has its own copy of non-static member variables.C) Unlike x and y, there is only one instance of the static member z. Static members are shared among all objects of a class, so no matter how many objects are created, there is only one z. D) In the Thing constructor, 'x = y = z' sets the x and y members for each object to the value of z which in this case, as defined in 'int Thing:: z = 0', means that x and y for each object will have the value 0.

Learn more about Class Declarations here:

https://brainly.com/question/32923899

#SPJ12

Final answer:

There are three separate instances each of the non-static members x and y, one instance of the static member z, and since the constructor initializes x and y to z's value, they will both have the value 0.

Explanation:

The question involves understanding the concept of members and static members in the C++ programming language, specifically within the context of class instances. When considering the provided class declaration and the creation of three instances of the Thing class, we are dealing with object-oriented programming principles.

A) Each instance of a class has its own separate set of non-static members. Since x is a non-static member and we have three instances, there are three separate instances of the x member.

B) Similarly, y is a non-static member. Thus, there are also three separate instances of the y member.

C) The z member is declared as static, meaning that it is shared across all instances of the class. Therefore, there is only one instance of the z member that exists across all instances of the class.

D) Because the constructor initializes x and y with the value of z, and z is initially set to 0, the value stored in the x and y members of each object will be 0.

the probabilities that a b and c can solve a particular problem are 3/5 2/3 and 1/2 respectively if they all try determine the probability that at least one of the group solves the problem

Answers

Answer:  The required probability is [tex]\dfrac{14}{15}.[/tex]

Step-by-step explanation:  Given that the probabilities that A, B and C can solve a particular problem are [tex]\dfrac{3}{5},~ \dfrac{2}{3},~\dfrac{1}{2}[/tex] respectively.

We are to determine the probability that at least one of the group solves the problem , if they all try.

Let E, F and G represents the probabilities that the problem is solved by A, B and C respectively.

Then, according to the given information, we have

[tex]P(E)=\dfrac{3}{5},~~~P(F)=\dfrac{2}{3},~~P(G)=\dfrac{1}{2}.[/tex]

So, the probabilities that the problem is not solved by A, not solved by B and not solved by C are given by

[tex]P\bar{(A)}=1-P(A)=1-\dfrac{3}{5}=\dfrac{2}{5},\\\\\\P\bar{(B)}=1-P(B)=1-\dfrac{2}{3}=\dfrac{1}{3},\\\\\\P\bar{(C)}=1-P(C)=1-\dfrac{1}{2}=\dfrac{1}{2}.[/tex]

Since A, B and C try to solve the problem independently, so the probability that the problem is not solved by all of them is

[tex]P(\bar{A}\cap \bar{B}\cap \bar{C})=P(\bar{A})\times P(\bar{B})\times P(\bar{C})=\dfrac{2}{5}\times\dfrac{1}{3}\times\dfrac{1}{2}=\dfrac{1}{15}.[/tex]

Therefore, the probability that at least one of the group solves the problem is

[tex]P(A\cup B\cup C)\\\\=1-P(\bar{A\cup B\cup C})\\\\=1-P(\bar{A}\cap \bar{B}\cap \bar{C})\\\\=1-\dfrac{1}{15}\\\\=\dfrac{14}{15}.[/tex]

Thus, the required probability is [tex]\dfrac{14}{15}.[/tex]

Final answer:

To find the probability that at least one of A, B, or C solves the problem, calculate 1 minus the probability that none solve it. The individual non-solving probabilities are multiplied together and subtracted from 1, resulting in a final answer of 14/15.

Explanation:

To determine the probability that at least one person out of A, B, and C solves a problem, we must first understand that the probability of at least one event occurring equals 1 minus the probability that none of the events occur (in this case, that none of the people solve the problem).

We have the individual probabilities as follows:

Probability A solves the problem: 3/5

Probability B solves the problem: 2/3

Probability C solves the problem: 1/2

The probabilities that A, B, or C do not solve the problem are then 1 - (3/5), 1 - (2/3), and 1 - (1/2), respectively. To find the probability that none of them solve the problem, we multiply these probabilities:

P(none solve) = (1 - 3/5) × (1 - 2/3) × (1 - 1/2)

Calculating this gives us P(none solve) = (2/5) × (1/3) × (1/2) = 2/30 = 1/15. Thus, the probability that at least one person solves the problem is:

P(at least one solves) = 1 - P(none solve) = 1 - 1/15 = 14/15.

The volume of a cylinder is 4x3 cubic units and its height is x units.
Which expression represents the radius of the cylinder, in units?
2x
4x
2pi x²
4pi x2​

Answers

Answer:

The answer to your question is r = 2x

Step-by-step explanation:

Volume of a cylinder = V = π r² h

r = radius

h = height = x

Volume = 4x³

Then

                  r² = [tex]\frac{volume}{\pi h}[/tex]

                  r² = [tex]\frac{4x^{3} }{\pi x}[/tex]

                  r² = 4x²

                  r = 2x

Two non-common sides of adjacent supplementary angles form a _____ angle.
A. reflex
B. acute
C. straight
D. obtuse

Answers

Answer:

C. straight

Step-by-step explanation:

 A Linear Pair is two adjacent angles whose non-common sides form opposite rays.

If two angles form a linear pair, the angles are supplementary.

A linear pair forms a straight angle which contains 180º, so you have 2 angles whose measures add to 180, which means they are supplementary.

In the figure given in attachment, AB and BC are two non common sides of ∠ABD and ∠DBC.

∠1 and ∠2 form a linear pair.

The line through points A, B and C is a straight line.

∠1 and ∠2 are supplementary.

Thus two non-common sides of adjacent supplementary angles form a straight angle.

Last year Ariq made 6 1-cup servings of soup for a party this year you will make 8 times the amount of soup that he made last year how many gallons of soup will he make this year?

Answers

Answer:

  3 gallons

Step-by-step explanation:

He will make 8×(6 cups) = 48 cups of soup. There are 16 cups in a gallon, so 3·16 = 48 cups in 3 gallons.

Ariq will make 3 gallons of soup this year.

Seed mixture X is 40 percent ryegrass and 60 percent bluegrass by weight; seed mixture Y is 25 percent ryegrass and 75 percent fescue. If a mixture of X and Y contains 30 percent ryegrass, what percent of the weight of the mixture is X ?

Answers

Answer: The weight of X is [tex]33\dfrac{1}{3}\%[/tex] of weight of mixture.

Step-by-step explanation:

Since we have given that

Percentage of seed mixture X for ryegrass = 40%

Percentage of seed mixture Y for ryegrass = 25%

If a mixture of X and Y contains 30 percent ryegrass,

Let total seed mixture be 100

So, for seed X = x

For seed Y = 100-x

So, According to question,

[tex]0.4x+0.25(100-x)=30\\\\0.4x+25-0.25x=30\\\\0.15x=30-25\\\\0.15x=5\\\\x=\dfrac{5}{0.15}\\\\x=\dfrac{100}{3}[/tex]

So, weight of mixture X is given by

[tex]\dfrac{\text{Weight of X}}{\text{Weight of mixture}}\times 100\\\\=\dfrac{\dfrac{100}{3}}{100}\times 100\\\\=\dfrac{100}{3}\%\\\\=33\dfrac{1}{3}\%[/tex]

Hence, the weight of X is [tex]33\dfrac{1}{3}\%[/tex] of weight of mixture.

Calc AB! Please show work, the answers are provided. I need all work for part A AND B!!!
Need ASAP!

Answers

Step-by-step explanation:

24. A

B' ( t ) = 10 [ 20 CDS ( t/10) ] = 2 COS ( t/10 )

B' ( 7 ) = 1.5

After 7 days the number of beds in use is increasing at the rate of 1 1/2 beds per day.

24.B

2 COS ( t/10) =0

using calculator t = 15.7

B (12) = 20 Sin (1.2) + 50 = 68.6 = 69

B (15.7) = 20 Sin (1.57) + 50 = 70

B (20) = 20 SIn (20) + 50 = 68.25 = 68

Maximum number of beds in use occurs in afternoon of 15th day and is 70 beds.

I hope that helps and I hope  it's right  

What is the volume of the cone? Use π ≈ 3.14. 12.56 cubic units 18.84 cubic units 20.93 cubic units 25.12 cubic units

Answers

Answer:

volume of cone = 12.56 cubic units

Step-by-step explanation:

Volume of cone = 1/3  π r² h

            r = 2

            h = 3

then

V= 1/3 3.14 * (2) ² 3

 = 12.56 cubic units

Answer:

12.56 cubic units

Step-by-step explanation:

Right on Edge 2022

find the quotient following this pattern

image attached

Answers

Answer:

x ^5 + x ^4 + x ^3 + x ^2 + x + 1

Answer:

The answer to your question is below

Step-by-step explanation:

[tex]\frac{x^{6}- 1 }{x -1} = \frac{x^{6}+ 0x^{5} + 0x^{4} + 0x^{3} + 0x^{2} + 0x - 1 }{x - 1}[/tex]

Synthetic division

                             1    0   0   0   0   0   -1    1

                                   1    1    1    1    1     1                                                

                             1    1     1    1    1    1    0              

Quotioent =    x⁵ + x⁴ + x³ + x² + x

Remainder = 0

Gina was earning $10 per hour. Then she received a 10% pay rate increase. Next month, her pay rate will decrease by 10%. What will Gina's pay rate be next month?

Answers

Answer:

Gina's pay rate next month will be =$9.9 per hour

Step-by-step explanation:

Gina was initial earnings was = $10 per hour

She received an increase by = 10%

Increase in amount received = [tex]10\%\ of\ \$10= 0.1\times\$10 =\$1 [/tex]

New earnings = [tex]\$10+\$1=\$11[/tex] per hour

Next month her pay rate will decrease by = 10%

Decrease in pay rate next month will be = [tex]10\%\ of\ \$11= 0.1\times\$11 =\$1.1 [/tex]

Thus, Gina's pay rate next month will be = [tex]\$11-\$1.1=\$9.9[/tex] per hour

Radiation​ machines, used to treat​ tumors, produce an intensity of radiation that varies inversely as the square of the distance from the machine. At 3​ meters, the radiation intensity is 62.5 milliroentgens per hour. What is the intensity at a distance of 2.7 ​meters?The intensity is______milliroentgens per hour. (Round to the nearest tenth as needed.)

Answers

The intensity at a distance of 2.7 meters is 77.17 milliroentgens per hour.

Given:

I= 62.5 milliroentgens per hour

Distance = 3 meters

If the intensity of radiation varies inversely as the square of the distance from the machine, use the inverse square law formula:

[tex]I = k/d^2[/tex]

Where:

I represents the intensity of radiation,

k is a constant,

d represents the distance from the machine.

Substituting the value back to formula as

62.5 = k/(3²)

62.5 = k/9

k = 62.5 x 9

k = 562.5

So, the intensity at a distance of 2.7 meters:

I = 562.5/(2.7²)

I = 562.5/7.29

I = 77.17 milliroentgens per hour

Therefore, the intensity is 77.17 milliroentgens per hour.

Learn more about Intensity here:

https://brainly.com/question/15861111

#SPJ12

Final answer:

The intensity of radiation from a machine at a distance of 2.7 meters is 77.16 milliroentgens per hour, according to the inverse square law in Physics.

Explanation:

The question is related to inverse square law in Physics. The intensity (ℤ) of radiation varies inversely as the square of the distance (d) from the machine. Mathematically, this relationship is represented as ℤ = k/d^2 where k is a constant. Given that at a distance of 3 meters, the intensity is 62.5 milliroentgens per hour, we can find the constant k = ℤ * d^2, i.e., k = 3^2 * 62.5 = 562.5.

Now, you want to know the intensity at a distance of 2.7 meters, which we can find by substituting this value and the constant k in our equation: ℤ = k/d^2, which results in ℤ = 562.5/(2.7^2) = 77.16 milliroentgens per hour. Therefore, the intensity at a distance of 2.7 meters from the radiation machine is 77.16 milliroentgens per hour.

Learn more about Radiation Intensity here:

https://brainly.com/question/29634224

#SPJ11

Please Help!
30. Write an equation in point-slope form for the line through the given point with the given slope. (-7,9); m=4/5

A. y+7= 4/5(x-9)
B. y-7=4/5(x+9)
C. y-9=4/5(x+7
D. y+9=4/5(x-7)

Answers

Answer:

C. [tex]y - 9 = \frac{4}{5}(x + 7)[/tex]

Step-by-step explanation:

The equation of a straight line through a point [tex](x_{1}, y_{1})[/tex] with slope m is given by

                  [tex]y - y_{1} = m(x - x_{1})\\y - 9 = \frac{4}{5}(x - (-7))\\y - 9 = \frac{4}{5} (x + 7)[/tex]

Therefore the answer is C. [tex]y - 9 = \frac{4}{5}(x + 7)[/tex]

On Saturday,4 friends ordered a large pizza to share altogether they pay 9.80 for the pizza . They share the cost equally .How much does each person pay?

Answers

Answer:

each paid $2.45

Step-by-step explanation:

9.80/4 = 2.45

sec^-1(csc(-45))
help me figure this out pleaseee

Answers

Answer: -1.17522136 hertz

there you go :) just to let you know I’m in 7th

You have $10 to spend on charms and stickers. The equation 0.5x + 0.25y=10 represents this situation, where x is the number of charms and y is the number of stickers. How many stickers can you buy when you do not buy any charms?

Answers

Answer:

40

Step-by-step explanation:

Since your only buying stickers you divide 10 by 0.25 to see how many you can purchase.

Answer:

It means a sticker costs $0.25 and a charm costs $0.5

Therefore without buying any charm

You can use $10 to buy 10/0.25

40 stickers

Step-by-step explanation:

The sum of both digits, of either of two two-digit numbers , in whatever order the digits are written, is 9. The square of either of the digits of either number, minus the product of both digits, plus the square of the other digit is the number 21. The numbers are?

a. 36, 63
b. 81, 18
c. 27, 72
d. 45, 54
e. none

Answers

Answer:

(d.) 45, 54

Step-by-step explanation:

Let the first digit = y

Let the second digit = z

y +z = 9 ------------------------------------------ (1)

y²- yz +z² = 21------------------------------------(2)

From equation (2),

z = 9-y-------------------------------------------------(3)

Substitute equation (3) into (2):

y²- y(9-y) +(9-y)² = 21

y²-9y+y²+y²-18y+81 = 21

3y²-27y+ 81 = 21

3y²-27y+ 81-21= 0

3y²-27y+ 60= 0

y²- 9y +20= 0

(y -5) (y-4) =0

y= 5 or y =4

z = 4 or 5 (substituting into (3))

So the numbers are  54  or 45.

A political analyst found 43% of 300 randomly selected republican voters feel that the federal government has too much power. Find the 95% confidence interval of the population proportion of republican voters who feel this way.

Answers

Answer:

Step-by-step explanation:

We want to determine 95% confidence interval of the population proportion of republican voters who feel that the federal government has too much power.

43% of 300 randomly selected republican voters feel that the federal government has too much power. This means that

p = 43/100 = 0.43

q = 1 - p = 1 - 0.43 = 0.57

n = 300

mean, u = np = 300 × 0.43 = 129

Standard deviation, s = √npq = √129×0.57 = 8.575

For a confidence level of 95%, the corresponding z value is 1.96. This is determined from the normal distribution table.

We will apply the formula

Confidence interval

= mean +/- z ×standard deviation/√n

It becomes

129 +/- 1.96 × 8.575/√300

= 129 +/- 0.9704

= 129 +/- 0.9704

The lower end of the confidence interval is 129 - 0.9704 =128.0296

The upper end of the confidence interval is 129 + 0.9704 =129.9704

Therefore, with 95% confidence interval, the mean of the population proportion of republican voters who feel that the federal government has too much power is between 128.0296 and 129.9704

Final answer:

To find the 95% confidence interval of the population proportion of Republican voters who feel that the federal government has too much power, use the formula CI = p ± Z * √((p*(1-p))/n), where p is the sample proportion, Z is the Z-score for the desired confidence level, and n is the sample size. Given the sample proportion of 0.43, sample size of 300, and desired confidence level of 95%, the confidence interval is approximately 0.381 to 0.479.

Explanation:

To find the 95% confidence interval of the population proportion of Republican voters who feel that the federal government has too much power, we can use the formula:

CI = p ± Z * √((p*(1-p))/n)

Where:

p is the sample proportionZ is the Z-score for the desired confidence level (in this case, 95%)n is the sample size

Given that the sample proportion is 0.43, the sample size is 300, and the desired confidence level is 95%, we can calculate the 95% confidence interval:

CI = 0.43 ± 1.96 * √((0.43*(1-0.43))/300)

Simplifying the equation, we get:

CI = 0.43 ± 0.049

Therefore, the 95% confidence interval of the population proportion of Republican voters who feel that the federal government has too much power is approximately 0.381 to 0.479.

Mofor's school is selling tickets to the annual dance competition. On the first day of ticket sales the school sold 7 adult tickets and 6 tickets for a total of $143. The school took in $187 on the second day by selling 4 adult tickets and 13 student tickets. Find the price of an adult ticket and the price of a student ticket.

Answers

Answer: the price of an adult ticket is $11

the price of a child ticket is $11

Step-by-step explanation:

Let x represent the price of an adult ticket.

Let y represent the price of a student ticket.

On the first day of ticket sales the school sold 7 adult tickets and 6 student tickets for a total of $143. This means that

7x + 6y = 143 - - - - - - - - - -1

The school took in $187 on the second day by selling 4 adult tickets and 13 student tickets. This means that

4x + 13y = 187 - - - - - - - - - -2

Multiplying equation 1 by 4 and equation 2 by 7, it becomes

28x + 24y = 572

28x + 91y = 1309

Subtracting

-67y = -737

y = -737/-67 = 11

Substituting y = 11 into equation 1, it becomes

7x + 6×11 = 143

7x + 66 = 143

7x = 143 - 66 = 77

x = 77/7 = 11

Assume that the heights of men are normally distributed with a mean of 66.9 inches and a standard deviation of 2.1inches. If 36 men are randomly selected, find the probability that they have a mean height greater than 67.9 inches.
A. 0.0021
B. 0.0210
C. 0.9979
D. 0.9005

Answers

Answer:

A. 0.0021

Step-by-step explanation:

Given that the heights of men are normally distributed with a mean of 66.9 inches and a standard deviation of 2.1inches.

Sample size = 36

Std dev of sample = [tex]\frac{2.1}{\sqrt{36} } =0.35[/tex]

The sample entries X the heights are normal with mean= 66.9 inches and std deviation = 0.35 inches

Or we have

Z = [tex]\frac{x-66.9}{0.35}[/tex]

Hence the probability that they have a mean height greater than 67.9 inches

=[tex]P(X>67.9)\\=P(Z>\frac{1}{0.35)} \\=0.00214[/tex]

So option A is right answer.

Final answer:

To find the probability that the mean height of 36 randomly selected men is greater than 67.9 inches, calculate the z-score and find the corresponding area under the standard normal distribution curve.

Explanation:

To find the probability that the mean height of 36 randomly selected men is greater than 67.9 inches, we need to calculate the z-score and find the corresponding area under the standard normal distribution curve.

The z-score is calculated using the formula:

z = (x - μ) / (σ / √n)

Where x is the value we want to find the probability for, μ is the population mean, σ is the population standard deviation, and n is the sample size.

Substituting the given values into the formula, we have:

z = (67.9 - 66.9) / (2.1 / √36) = 1.71

Using a standard normal distribution table or a calculator, we can find that the area to the right of a z-score of 1.71 is approximately 0.0436.

Since we want the probability of having a mean height greater than 67.9 inches, we need to calculate the area to the right of the z-score. Therefore, the probability is approximately 1 - 0.0436 = 0.9564.

you guysss pls help me

Answers

Answer:

option B)[tex]\frac{1}{12}[/tex]

Step-by-step explanation:

According to the given conditions, the total number of outcomes are 24.

The probability that of drawing hearts card is

P=[tex]\frac{(total number of hearts cases)}{(total number of cases)}[/tex]

total number of hearts cases= 6

thus P= [tex]\frac{6}{24} = \frac{1}{4}[/tex]

now the probability of 4 or 6 is,

P=[tex]\frac{(total number of 4 or 6 cases)}{(total number of cases)}[/tex]

thus P= [tex]\frac{8}{24} = \frac{1}{3}[/tex]

thus, by multiplication law,

final probality is P= [tex](\frac{1}{4})(\frac{1}{3})[/tex]

P= [tex]\frac{1}{12}[/tex]

The music department of a department store sold 12 jazz CDs last month. Jazz sales during that month made up 2% of the music departments total sales. Determine the number of CDs that the store sold during that month

Answers

12 CDs ............... 2 %

x CDs .............100 %

x = 12×100/2 = 1200/2 = 600 Cds/month

The required number of CD that was sold last month is 600 CD's.

What is the percentage?

The percentage is the ratio of the composition of matter to the overall composition of matter multiplied by 100.

What is simplification?

The process in mathematics to operate and interpret the function to make the function or expression simple or more understandable is called simplifying and the process is called simplification.

Here,
Let the number of total CDs sold be x,


The music department of a department store sold 12 jazz CDs last month.
Jazz sales during that month made up 2% of the music department's total sales.

2% of x = 12
x = 12 / 2%
x = 12 / 0.02
x = 600

Thus, the required number of CD that was sold last month is 60 CD's.

Learn more about percentages here:

brainly.com/question/13450942

#SPJ5

You have the opportunity to lease space for your business with a fixed-rate lease. The property owner has proposed a three-year lease with a rent of $3,800 per month. How much is the rent over the life of the lease?a) $129,240b) $129,440c) $136,800d) $139,240

Answers

Answer:

Easy, it is C) $136,800

Step-by-step explanation:

All you need to do is multiply $3,800 by 12 to get the yearly rent. To get $45,600 per year. You now multiply $45,600 by 3 to get the total price of the 3 year lease. You now have a total cost of $136,800 over the 3 year time period of the lease.

circles pls help decent amount of points ​

Answers

Recall that with inscribed angles, they equal half of the arc they create.

Knowing this, take a look at Angle B. Notice that it's two lines are on the diameter? This means that the arc created is 180 degrees. Because it's an inscribed angle, we know that it's 90 degrees.

Also recall that the sum of all angles in a triangle equal 180 degrees.

Knowing this, we can add up all the angles:
(2x + 2) + 9x + 90 = 180

Simplify:
11x + 92 = 180

Subtract:
11x = 88

Divide:
x = 8

Now that we know the value of x is 8, we can input that into the equation of angle 1 in order to solve the question:
2x + 2 = 2(8) + 2

2(8) + 2 = 16 + 2 = 18

Angle 1 is 18 degrees.
-T.B.

Find the number solutions of the equation

Answers

Answer:

  A.  0

Step-by-step explanation:

The value of the discriminant is ...

  b² -4ac = (-3)² -4(1)(4) = 9 - 16 = -7

The negative discriminant means the roots will be complex.

There are 0 real solutions.

When 3010 adults were surveyed in a​ poll, 27​% said that they use the Internet. Is it okay for a newspaper reporter to write that ​"1 divided by 4 of all adults use the​ Internet"? Why or why​ not? Identify the null​ hypothesis, alternative​ hypothesis, test​ statistic, P-value, conclusion about the null​ hypothesis, and final conclusion that addresses the original claim. Use the​ P-value method. Use the normal distribution as an approximation of the binomial distribution.
The test statistic is z = ?. (Round to two decimal places as needed.)The P-value is ?. (Round to four decimal places as needed.)Identify the conclusion about the null hypothesis and the final conclusion that addresses the original claim. (Assume a 0.05 significance level.)

Answers

Answer:

Null hypothesis:[tex]p=0.25[/tex]  

Alternative hypothesis:[tex]p \neq 0.25[/tex]

z=2.53

pv=0.0114

So based on the p value obtained and using the significance given [tex]\alpha=0.05[/tex] we have [tex]p_v<\alpha[/tex] so we can conclude that we reject the null hypothesis, and we can said that at 5% of significance the proportion of people who says that they use the Internet differs from 0.25 or 25% .  

Step-by-step explanation:

1) Data given and notation

n=3010 represent the random sample taken

X represent the people who says that said that they use the Internet.

[tex]\hat p=\frac{X}{106}=0.27[/tex] estimated proportion of people who says that said that they use the Internet.

[tex]p_o=0.25[/tex] is the value that we want to test

[tex]\alpha[/tex] represent the significance level  

z would represent the statistic (variable of interest)

[tex]p_v[/tex] represent the p value (variable of interest)  

2) Concepts and formulas to use  

We need to conduct a hypothesis in order to test the claim that 50% of people who says that  they would watch one of the television shows.:  

Null hypothesis:[tex]p=0.25[/tex]  

Alternative hypothesis:[tex]p \neq 0.25[/tex]  

When we conduct a proportion test we need to use the z statisitc, and the is given by:  

[tex]z=\frac{\hat p -p_o}{\sqrt{\frac{p_o (1-p_o)}{n}}}[/tex] (1)  

The One-Sample Proportion Test is used to assess whether a population proportion [tex]\hat p[/tex] is significantly different from a hypothesized value [tex]p_o[/tex].

3) Calculate the statistic  

Since we have all the info requires we can replace in formula (1) like this:  

[tex]z=\frac{0.27 -0.25}{\sqrt{\frac{0.25(1-0.25)}{3010}}}=2.53[/tex]

4) Statistical decision  

P value method or p value approach . "This method consists on determining "likely" or "unlikely" by determining the probability assuming the null hypothesis were true of observing a more extreme test statistic in the direction of the alternative hypothesis than the one observed". Or in other words is just a method to have an statistical decision to fail to reject or reject the null hypothesis.  

We have the significance level provided [tex]\alpha=0.05[/tex]. The next step would be calculate the p value for this test.  

Since is a bilateral test the p value would be:  

[tex]p_v =2*P(z>2.53)=2*(0.0057)=0.0114[/tex]  

So based on the p value obtained and using the significance given [tex]\alpha=0.05[/tex] we have [tex]p_v<\alpha[/tex] so we can conclude that we reject the null hypothesis, and we can said that at 5% of significance the proportion of people who says that they use the Internet differs from 0.25 or 25% .  

A private plane traveled from Seattle to a rugged​ wilderness, at an average speed of 312312 mph. On the return​ trip, the average speed was 364364 mph. If the total traveling time was 44 ​hours, how far is Seattle from the​ wilderness?

Answers

Final answer:

The distance from Seattle to the rugged wilderness, calculated using the average speeds and total travel time, is found to be 7424 miles.

Explanation:

Given that a private plane traveled to and from a rugged wilderness, with average speeds of 312 mph on the way to the wilderness and 364 mph on the return trip to Seattle, and the total flying time for round trip was 44 hours, we can calculate the distance by using the formula for average speed, which is average speed = total distance/total time.

Let's denote the distance between Seattle and the wilderness as x miles. The time taken to fly to the wilderness is then x/312 and the time taken to fly back is x/364.

The total flying time of 44 hours can be split into the sum of the time going to the wilderness and coming back, which gives us:
(x/312) + (x/364) = 44.

To solve for x, we need to find a common denominator and solve the equation.

Common denominator for 312 and 364 is 114,048.

Convert the equation: (364x + 312x) / 114048 = 44.

Multiply both sides by 114048: 676x = 5018112.

Divide both sides by 676: x = 7424.

Therefore, the distance from Seattle to the rugged wilderness is 7424 miles.

Olivia and her three siblings bring a sack lunch to school each day, consisting of a bagel, an apple, a cookie, and a juice box. When Olivia's mom goes grocery shopping, she likes to purchase the same amount of each lunch item so that she can make complete lunches, with no leftover items. However, each item comes in a different sized package, as shown below: Bagels: six in a bag Apples: eight in a bag Cookies: twelve in a box Juice Boxes: nine in a box Find the least number of packages she must purchase in order to have the same amount of each item. With the amount of items Olivia's mom is purchasing, she'll be able to make enough lunches to feed all four siblings for days.

Answers

Answer:

72/4=18 so she could make their lunch for 18 days

Step-by-step explanation:

so it would be 6x12 for the bagels which would be 72

for the apples it would be 8x9 which is 72

the cookies would be 12x6 to get 72

and the juice boxes would be 9x8 to get 72

divide that by 4 to get 18

H-20
———— = 0
-3

Solve for h

Answers

Answer:

  H = 30

Step-by-step explanation:

The value of a fraction is zero when its numerator is zero. The value of h that makes the numerator zero is 20.

  h = 20

A company had 3,000 people come try their product. 21 out of the 3,000 people had an allergic reaction. What is the percent of the people that had an allergic reaction.

Answers

Answer: number of people that had allergic reactions is 0.7%

Step-by-step explanation:

The total number of people that came to try the company's product is 3000

21 out of the 3,000 people had an allergic reaction. We want to determine how many percent of the total number of 3000 people that tried the product is 21 people that had reaction

Percentage of people that had allergic reactions = number of people that had allergic reactions / total number of people that tried the products × 100

Percentage of people that had an allergic reaction

= 21/3000× 100

= 0.007 × 100 = 0.7%

Other Questions
An online furniture store sells chairs for $50 each and tables for $250 each. Every day, the store can ship no more than 36 pieces of furniture and must sell at least $3400 worth of chairs and tables. If 23 chairs were sold, determine all possible values for the number of tables that the store must sell in order to meet the requirements. Your answer should be a comma separated list of values. If there are no possible solutions , submit an empty answer. Which of the following is true of predictive patterns in data mining? a. They occur when a minimum of three database elements occur together in a significant way. b. They occur when only two database elements tend to occur together in a significant way. c. They help identify database elements that are different. d. They help identify the similarities in patterns in data sets. A political ad that incorporates a fear appeal would most likely be expressed as_______. A. religious repercussions after death.B. disenfranchisement from mainstream society.C. a lack of patriotic responsibility.D. a lack of self-respect or self-worth.E. warnings against the rise of other, unpopular ideologies.Fear appeals suggest to the consumer that some negative experience or outcome can be avoided if a certain good or service is purchased or behavior is changed.. The product of 2 numbers is -33 whereas their difference is -12. Find the numbers. Hint: There are 2 PAIRS of numbers... CAD workstations: facilitate employee learning. provide engineers, designers, and factory managers with precise control over industrial design and manufacturing. allow groups to work together on documents. provide an important source of expertise for organizations. are high-end PCs used in the financial sector to analyze trading situations instantaneously and facilitate portfolio management. Rose picks up a chocolate biscuit from a jar. The first biscuit she eats from the jar is stale. She empties all other biscuits from the jar into the dustbin as she believes that all the other biscuits must also be stale. Which of the following types of reasoning is Rose using in disposing the biscuits away a) functional b) deductive c) inductive d) accommodative Pus is a mixture of dead neutrophils, dead tissue, bacteria, and living white blood cells.A. TrueB. False Justin and Brandon are discussing an acquaintance who was convicted of a drug charge. He was sentenced to probation with the condition he receive drug treatment. Which statement provides a justification for his community-based correction? What was the most important influence on the American Founders?O European EnlightenmentO Native American federationsO ancient Egyptian hierarchiesOAfrican dual governance A golfer takes two putts to sink his ball in the hole. The first putt displaces the ball 6.50 m east, and the second putt displaces it 5.90 m south. What displacement would put the ball in the hole in one putt? Suppose a banking system receives a new deposit of $1,000. If the reserve requirement is 20%, by how much can the total volume of deposits in that banking system ultimately rise as a result, assuming all excess reserves are loaned out and all loan proceeds are re-deposited? A receiving department compares inventory items received with copies of purchase orders. The purchase orders list the name of the vendor and do not list the quantities of the material ordered. Using the purchase orders, the receiving department is most likely to detect_________ Ashley went shopping at the mall she spent 2/5 of her money on new shoes and 1/6 of her money on new jeans. What fraction part of her money remain? Solve for x(.07)+x=14.70 An able order to join a health club a star a fee of $30 is required along with a monthly fee of seven dollars right in equation that Mama knows this situation Ngo is seeing a therapist for recent problems with anxiety. The therapist has Ngo lie on a couch and freely talk about events from his childhood, while the therapist jots down notes. Ngo is seeing someone who practices _____ psychotherapy. A 3-g bullet is fired horizontally into a 10-kg block of wood suspended by a rope from the ceiling. The block swings in an arc, rising 3 mm above its lowest position. The velocity of the bullet was: The sustainable infrastructure pressure of increased energy consumption poses new and growing pressure. The energy consumed by a computer is estimated to produce as much as 10% of the amount of carbon dioxide produced by a ________.A. houseB. schoolC. carD. cell phone 5.The present value of a sum of money is theamount that must be invested now, at a givenrate of interest, to produce the desired sum at alater date. Find the present value of 10,000 ifinterest is paid at a rate of 6.2% compoundedweekly for 8 years. How did Theodore Roosevelt use big stick diplomacy to construct the Panama Canal? A.Roosevelt threatened to invade and colonize Colombia.B.Roosevelt supported Panama's revolution against Colombia. C.Roosevelt negotiated with Nicaragua and Colombia to build the canal. D.Roosevelt sent a naval fleet to force Colombia to give up land for the canal.