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
andriy [413]
3 years ago
5

The mass of the moon is 7.36*10^25 grams to the nearest tenth how many moons would it take to equal the mass of earth

Mathematics
1 answer:
trapecia [35]3 years ago
6 0

Nearly 81 moons will be required to equate the mass of moon to the mass of earth.

Step-by-step explanation:

Mass of earth is 5.972*10^24 kg.  

Mass of the moon is 7.36*10^25 g = 7.36*10^22 kg

As mass of the Earth is given as 5.972 * 10^24 kg and mass of the moon is given as 7.36 * 10^22 kg, then the number of moons required to make it equal to the mass of earth can be calculated by taking the ratio of mass of earth to moon.

 Mass of Earth = Number of moons * Mass of Moon

Number of Moons = Mass of Earth/Mass of moon

Number of moons = 5.972 * 10^24/7.36*10^22= 81 moons.

So nearly 81 moons will be required to equate the mass of moon to the mass of earth.

You might be interested in
Totsakan's school is selling tickets to a spring musical. On the first day of ticket sales the school sold 1 adult tickets and 8
Nastasia [14]

Answer:

Each ticket cost $13

Step-by-step explanation:

Day 1-- 1 adult and 8 child ticket= Total of 9 tickets = $117

Day 2--6 adult and 8 child ticket= Total of 14 = $182

Brainliest please :)

6 0
3 years ago
Thank you in advance for the help !!
babymother [125]

The Answer is C, my good friend.

4 0
3 years ago
F(x)=x² <br> G(x)=(x-6)²<br> Complete the description of the transformation
artcher [175]
6 units to the right
5 0
3 years ago
Read 2 more answers
To find 10, Beau found 32 = 9 and 42 = 16. He said that since 10 is between 9 and 16, 10 is between 3
AlexFokin [52]

Given that:

Consider it is \sqrt{10} instead of 10 on two places.

\sqrt{10} is between 3  and 4. So, Beau thinks a good estimate for \sqrt{10} is = 3.5.

Solution:

To find \sqrt{10}, Beau found 3² = 9 and 4² = 16.

He said that since 10 is between 9 and 16.

Since 10 is close to 9, therefore \sqrt{10} must be close to 3. So, Beau's estimate is high.

Now,

(3.1)^2=9.61

(3.2)^2=10.24

Since, 10 lies between 9.61 and 10.24, therefore \sqrt{10} must be lies between 3.1 and 3.2.

\dfrac{3.1+3.2}{2}=3.15

Therefore, the estimated value of \sqrt{10} is 3.15.

4 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:
  • Solve for x.
    11·1 answer
  • Answer The question... What is the slope of the line passing through the points (2,-5 ) and 4,1)?
    9·1 answer
  • The value of a $225,000 house increases at a rate of 3.5% each year. Use a graph to predict the value of the house in 8 years.
    8·1 answer
  • Solve. picture attached
    12·1 answer
  • The price of a dress is reduced by 55​0%. When the dress still does not​ sell, it is reduced by 55​0% of the reduced price. If t
    10·1 answer
  • the glee club has 5% more girls more than boys. there are 82 students in the glee club. how many are boys? how many are girls?
    14·2 answers
  • Can someone please help me:)
    5·1 answer
  • Find the sum of the interior angles, then solve for x. <br><br> Help!!
    12·2 answers
  • The base of a rectangle is 13 centimeters longer than the height.If the perimiter is 58 centimeters find the base and the height
    14·1 answer
  • What is the answer please
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!