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
BlackZzzverrR [31]
3 years ago
15

Maggie's brother is 4 years younger than three times her age. The sum of their ages is 16.

Mathematics
1 answer:
bearhunter [10]3 years ago
7 0

Answer:

Maggie is 5 years old

Step-by-step explanation:

3M-4+M=16

add 4 to both sides

4M=20

Divide both sides by 4

20/4 = 5

M/Maggie is 5

You might be interested in
Plzz i need help with this can somebody help me?
Olin [163]

Answer:

the answer is b

Step-by-step explanation:

if u divide .14 by .2

its gonna give u .8

2 times 8 is 16 but there are two decimals so its .16

hope this helps

6 0
3 years ago
M(x)=1/x f(x)=2x-10 find the domain restriction of m(R(x))
AlexFokin [52]

Answer:

  • x ≠ 5

Step-by-step explanation:

<u>Given</u>

  • m(x) = 1/x
  • f(x) = 2x - 10

<u>Composite function</u>

  • m(f(x)) = 1/ (2x - 10)

<u>The denominator can't be zero</u>

  • 2x - 10 ≠ 0
  • 2x ≠ 10
  • x ≠ 5

5 0
3 years ago
12. Martina rents a room in her home to guests. She charges a $25 flat fee per night for one person. Additional guests are welco
gtnhenbr [62]

Answer:

Step-by-step explanation:

the answer is A

BECAUSE the fixed charged or the charged that is always there is 25 dollars plus and additional cost for 10 dollars per person plus additional cost depending on how many hours u stay past 10 am

6 0
3 years ago
Read 2 more answers
In a group of college students, the ratio of men to women is 3:1 (i.e., 3 to 1). In a recent survey, 40% of the men in this grou
katovenus [111]

Answer:

0.3875

Step-by-step explanation:

Given that in a group of college students, the ratio of men to women is 3:1 (i.e., 3 to 1). In a recent survey, 40% of the men in this group selected hiking as their favorite outdoor activity whereas 35% of the women in the group selected hiking as their favorite outdoor activity

From the above information we find that

P(Men) = 0.75 and P(women) = 0.25 (since men:women = 3:1)

Out of men prob for not selecting hiking as their favorite outdoor activity

=1-0.6 = 0.4

Out of women prob for not selecting hiking as their favorite outdoor activity

=1-0.35 = 0.65

Prob for a randomly selected person that hiking is not his/her favorite outdoor activity = Prob (man and not selected activitiy) + P(women and not selected activity) (since men and women are mutually exclusive and exhaustive)

=0.75(0.4)+0.25(0.35)\\= 0.30+0.0875\\\\=0.3875

6 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:
  • Find the 86th term of the arithmetic sequence 18, 21, 24,
    9·1 answer
  • Solve for c, 3ab-2bc=12
    9·1 answer
  • five times the difference of a number and three is the same as three increased by five times the number plus 3 times the number
    7·1 answer
  • Which is greater 5/6 or 1/3
    15·2 answers
  • The table shows the proportional relationship of the colors in Molly's garden.
    9·2 answers
  • A box of chocolates contains, on average, 24 pieces. If the number of chocolates in each box never varies from the average by mo
    15·2 answers
  • Mrs. Thomas called an electrician to come to her home to fix some wires. The electrician charged $40 to go to Mrs. Thomas' house
    8·1 answer
  • Hey! please help i’ll give brainliest
    6·1 answer
  • What is the graph of the function?y=34 . 2x
    5·1 answer
  • Divide.<br> 123 : 5 <br> remainder
    7·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!