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
Rama09 [41]
3 years ago
8

Carissa also has a sink that is shaped like a half-sphere. The sink has a volume of 4000/3*π in^3. One day, her sink clogged. Sh

e has to use one of two conical cups to scoop the water out of the sink. The sink is completely full when Carissa begins scooping. Hint: you may need to find the volume for both.
(A) One cup has a diameter of 4 in. and a height of 8 in. How many cups of water must Carissa scoop out of the sink with this cup to empty it? Round the number of scoops to the nearest whole number, and make certain to show your work.

(B) One cup has a diameter of 8 in. and a height of 8 in. How many cups of water must she scoop out of the sink with this cup to empty it? Round the number of scoops to the nearest whole number, and make certain to show your work.
Mathematics
1 answer:
In-s [12.5K]3 years ago
6 0

Answer:

  (A)  125 scoops

  (B)  31 scoops

Step-by-step explanation:

The volume of a cup in terms of radius and height is ...

  V = (1/3)πr²h

The radius is half the diameter, so the volume in terms of diameter is ...

  V = (1/3)π(d/2)²h = (π/12)d²h

The number of cups it takes to empty the sink will be the sink volume divided by the cup volume, so will be ...

  n = (4000π/3)/((π/12)d²h)

  n = 16000/(d²h)

__

(A) The number of cups required of diameter 4 and height 8 is ...

  n = 16000/(4²·8) = 125

  125 scoops are required to empty the sink

__

(B) The number of cups required of diameter 8 and height 8 is ...

  n = 16000/(8²·8) = 31.25 ≈ 31

  31 scoops are required to empty the sink

You might be interested in
Kiara spent $36 and had $12 left.<br><br> what percent money did she spend
Illusion [34]

Answer:

she spent 75%

Step-by-step explanation:

5 0
3 years ago
Read 2 more answers
13=X/4<br><br> A. 13/4<br><br> B. 4/13<br><br> C. 52<br><br> D. 9
Snowcat [4.5K]

Answer:

Hi! The answer to your question is C. 52

Step-by-step explanation:

☆*: .。..。.:*☆☆*: .。..。.:*☆☆*: .。..。.:*☆

☆Brainliest is greatly appreciated!☆

Hope this helps!

- Brooklynn Deka

3 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
2 years ago
Use the bar graph to answer the question.
erik [133]

Answer:

A

Step-by-step explanation:

the graph shows It's the 3rd tallest

6 0
3 years ago
There are 13 dogs at the dog park on a busy Saturday. 1 of them is a labrador retriever.What is the probability that a randomly
masha68 [24]

Answer:

there is a 1/13 (one in 13) chance that they will randomly pick a labrador.

Step-by-step explanation: If you need more help just message me :)

6 0
3 years ago
Read 2 more answers
Other questions:
  • What is the difference of 73.9 and 8.801
    8·1 answer
  • A salesperson earns a base salary of $4000 per month plus 15% commission on sales. her monthly income f(s) is given by the funct
    8·2 answers
  • Amy and Henry shared a cash prize in the ratio 2:3. If Henry received $33, how much money did Amy receive?
    15·1 answer
  • Mrs.Benite earns $3,400 every month.She spends 25% of her drawings on rent and 30% of the remainder on transportation.How much d
    15·1 answer
  • Which of the following is true about a linear pair?
    12·2 answers
  • Pls help fast 98 points again point spree)) What is the mean absolute deviation for 9, 7, 6, 8, 7, and 5?
    13·1 answer
  • Best answer gets brainliest!​
    15·1 answer
  • 10 points! help me! <br> please! its only 1 question
    7·2 answers
  • WILL GIVE BRAINLIEST In a survey of 2,800 people who owned a certain type of​ car, 700 said they would buy that type of car agai
    7·2 answers
  • Write an equation in point-slope form of the line that passes through the point (4, −9) and has a slope of m=6
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!