1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
kow [346]
3 years ago
11

What is The volume of right rectangular prism 3 cm 3 cm 12 cm

Mathematics
1 answer:
Cloud [144]3 years ago
4 0

Answer:

q

Step-by-step explanation:

You might be interested in
In the right triangle shown, what is the value of x (to the nearest tenth)?
AVprozaik [17]
23.7 because you multiply
4 0
3 years ago
Read 2 more answers
Y= 8x -6 complete the Fuction table it also has X and Y ​
statuscvo [17]
Hshshshbshsnsbsbsbbsbs 5
3 0
3 years ago
he marketing research department at the Fresno Mall plans to survey teenagers about a newly developed soft drink. Each person sa
Nat2105 [25]

50% of those who liked orange flavored soda also like lime flavored soda according to the conditional probability.

According to the statement

we have given that the in the survey 70% of the people surveyed said they like the orange flavored soda and 35% of the people surveyed said they liked the orange flavored soda AND the lime flavored soda.

And we have to find the conditional probability about this given statement.

So, We know that the

Let A and B represents the following events.

A : The people like the orange flavored soda.

B : The people like the lime flavored soda.

It is given that 70% of the people surveyed said they like the orange flavored soda.

so, P(A) = 0.70

And 35% of the people surveyed said they liked the orange flavored soda AND the lime flavored soda.

So, P(A ∩ B ) = 0.35

A. Conditional probability is a measure of the probability of an event occurring, given that another event has already occurred.

And

B. The formula for conditional probability is is written below:

P(A/B) = P(A ∩ B ) / P (B)

And

C. We need to find the percent of those who liked orange flavored soda also like lime flavored soda.

Use the above written conditional probability formula then

Substitute P(A)=0.70 and P(A∩B)=0.35 in the above formula.

So,

P(B/A) = P(A ∩ B ) / P (A)

P(B/A) = 0.35 / 0.70

P(B/A) = 0.50

So, 50% of those who liked orange flavored soda also like lime flavored soda according to the conditional probability.

Learn more about conditional probability here

brainly.com/question/23382435

Disclaimer: This question was incomplete. Please find the full content below.

Question:

The marketing research department at the Fresno Mall plans to survey teenagers about a newly developed soft drink. 70% of the people surveyed said they like the orange flavored soda. 35% of the people surveyed said they liked the orange flavored soda AND the lime flavored soda. Using this information and the Text Editor, answer the following questions:

1.What is conditional probability?

2.Explain the formula for conditional probability.

3.Explain how to solve this example.

What percent of those who liked orange flavored soda also like lime flavored soda, and how did you come to that conclusion?

#SPJ4

5 0
2 years ago
Madison bought a dress priced at $98.25. The dress was 20% off. If she purchases the dress, what would the discounted price be?
RoseWind [281]

Answer:

C. $19.65

Step-by-step explanation:

You have to find 20% of $98.25

This is equal to,

20% * $98.25                Because of usually means multiplication

= .20 * 98.25                 Because .20 = 20%

= 19.65!

7 0
3 years ago
5. The recursive algorithm given below can be used to compute gcd(a, b) where a and b are non-negative integer, not both zero.
s2008m [1.1K]

Implementating the given algorithm in python 3, the greatest common divisors of <em>(</em><em>124</em><em> </em><em>and</em><em> </em><em>244</em><em>)</em><em> </em>and <em>(</em><em>4424</em><em> </em><em>and</em><em> </em><em>2111</em><em>)</em><em> </em>are 4 and 1 respectively.

The program implementation is given below and the output of the sample run is attached.

def gcd(a, b):

<em>#initialize</em><em> </em><em>a</em><em> </em><em>function</em><em> </em><em>named</em><em> </em><em>gcd</em><em> </em><em>which</em><em> </em><em>takes</em><em> </em><em>in</em><em> </em><em>two</em><em> </em><em>parameters</em><em> </em>

if a>b:

<em>#checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>is</em><em> </em><em>greater</em><em> </em><em>than</em><em> </em><em>b</em>

return gcd (b, a)

<em>#if</em><em> </em><em>true</em><em> </em><em>interchange</em><em> </em><em>the</em><em> </em><em>Parameters</em><em> </em><em>and</em><em> </em><em>Recall</em><em> </em><em>the</em><em> </em><em>function</em><em> </em>

elif a == 0:

return b

elif a == 1:

return 1

elif((a%2 == 0)and(b%2==0)):

<em>#even</em><em> </em><em>numbers</em><em> </em><em>leave</em><em> </em><em>no</em><em> </em><em>remainder</em><em> </em><em>when</em><em> </em><em>divided</em><em> </em><em>by</em><em> </em><em>2</em><em>,</em><em> </em><em>checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>and</em><em> </em><em>b</em><em> </em><em>are</em><em> </em><em>even</em><em> </em>

return 2 * gcd(a/2, b/2)

elif((a%2 !=0) and (b%2==0)):

<em>#checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>is</em><em> </em><em>odd</em><em> </em><em>and</em><em> </em><em>B</em><em> </em><em>is</em><em> </em><em>even</em><em> </em>

return gcd(a, b/2)

else :

return gcd(a, b-a)

<em>#since</em><em> </em><em>it's</em><em> </em><em>a</em><em> </em><em>recursive</em><em> </em><em>function</em><em>,</em><em> </em><em>it</em><em> </em><em>recalls</em><em> </em><em>the function</em><em> </em><em>with </em><em>new</em><em> </em><em>parameters</em><em> </em><em>until</em><em> </em><em>a</em><em> </em><em>certain</em><em> </em><em>condition</em><em> </em><em>is</em><em> </em><em>satisfied</em><em> </em>

print(gcd(124, 244))

print()

<em>#leaves</em><em> </em><em>a</em><em> </em><em>space</em><em> </em><em>after</em><em> </em><em>the</em><em> </em><em>first</em><em> </em><em>output</em><em> </em>

print(gcd(4424, 2111))

Learn more :brainly.com/question/25506437

6 0
3 years ago
Other questions:
  • Pyramid A has a volume of 60 mm cubed and pyramid B has a volume of 937.5 mm cubed. What is the ratio of their heights?
    11·1 answer
  • Solve for x.<br><br> x^3=8/125<br><br> Enter your answer in the box as a fraction in simplest form.
    9·1 answer
  • What is the median of this set 14, 18, 31, 34, 44, 50
    11·2 answers
  • Find the distance between X and Y <br> X(-4,7) Y(8,-12)
    8·2 answers
  • What is the sum of the geometric sequence -4, 24, -144, if there are 6 terms
    11·1 answer
  • Identify the following series as arithmetic, geometric, both, or neither.
    12·2 answers
  • What is the difference between 2×3 and 3×2?
    14·1 answer
  • Find X and show steps if possible please;)
    7·2 answers
  • Students in a school are asked to pick either football, rugby or tennis to play in their lesson.
    15·1 answer
  • A =10<br> a/4 + 1/3 <br> How do I figure out this answer?
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!