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
Tanya [424]
2 years ago
10

Maathhhhh tingssssss

Mathematics
2 answers:
DIA [1.3K]2 years ago
7 0
Will you give me brainliest if I solve this?
matrenka [14]2 years ago
5 0

Answer:

not sure sorry

Step-by-step explanation:

You might be interested in
Problem 5.A miner is trapped inside a mine and has access to 3 doors. The first door leads to a tunneland can take him to safety
Likurg_2 [28]

Answer:

Expected time is 15 hours for him to get to safety.

Step-by-step explanation:

We define X as the time that this miner would get to safety.

We define Y as the door he chooses initially.

P(Y= 1) = P(Y=2)=P(Y=3) = 1/3

We have E[X|Y=1] = 3

E[X|Y] = 5 hours + E[X}

E[X|Y] = 7 hours + E[X]

Then we have

E[X] = 1/3(3 + 5 + E[X] + 7 + E[X])

We cross multiply

3*E[X] = (15 + 2E[x])

3E[X] - 2E[X] = 15

E[X] = 15

So the time it would take to get him to safety is 15 hours

5 0
2 years ago
You have a wooden rod which is 24 1/2 inches long. Carlos needs a piece which is 8 3/4 inches long and Amanda needs a piece whic
ipn [44]

Answer:

8 3/4 inches

Step-by-step explanation:

Total length of the rod = 24 1/2 inches

Carlos = 8 3/4 inches

Amanda = 6 3/8 inches

length of the rod remaining = Total length - ( Carlos + Amanda)

= 24 1/2 - (8 3/4 + 6 3/8)

= 49/2 - (35/4 + 51/8)

= 49/2 - ( 75+51/8)

= 49/2 - 126/8

= 196-126/8

= 70/8

= 8 6/8 inches

= 8 3/4 inches

Length of rod remaining = 8 3/4 inches

6 0
3 years ago
Which best describes the range of a function?
MArishka [77]

Answer:

C, the set of all possible output values

Step-by-step explanation:

Range = Output

8 0
3 years ago
Read 2 more answers
the ___in the hundreds place has a value__ times as great as the vlaue in the __ place. the __ in the __ place has 1/10 the valu
Akimi4 [234]

The digit in the hundreds place has a value 10 times as great as the value in the tens place. The digit in the tens place has 1/10 the value of the digit in the hundred place

<h3>What is place value?</h3>

Place value is simply the value of each digit in a number.

For instance:

  • The 3 in 350 represents 3 hundreds, or 300
  • The 5 in 5,006 represents 5 thousands, or 5,000.

It is important to note that place value is the value represented by a digit in a number on the basis of its position in the number or figure.

We can deduce the following:

  • The digit in the hundreds place has a value 10 times as great as the value in the tens place
  • The place value of a digit at the hundredths place is 1/10 times the same digit at the tenths place

Thus, the digit in the hundreds place has a value 10 times as great as the value in the tens place. The digit in the tens place has 1/10 the value of the digit in the hundred place

Learn more about place value here:

brainly.com/question/12386995

#SPJ1

4 0
1 year 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
Other questions:
  • What property or properties prove (2x)(3y)(4z)=24xyz
    6·1 answer
  • Absolute value of 2c + 8 = absolute value of 10 c
    8·1 answer
  • PLEASE HELP!!!!
    7·1 answer
  • You spend $16 on 3 notebooks and x binders . Notebooks cost $2 each and binders cost $5 each. Write an equation you can use to f
    13·1 answer
  • How do you know that 21 over 30 is greater than 2 over 3
    11·2 answers
  • The sum of 2 and a number divided by 3 is greater than -10​
    6·1 answer
  • Will mark brainliest
    6·1 answer
  • NEED HELP ASAP on #1-#3
    13·1 answer
  • Please answer the question, i took a picture of it.
    10·2 answers
  • Help or sus lots of points ​
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!