The expression for the cost of Taxi B is 0.40<em>x</em> + 2.<em> </em>The expression for the cost of Taxi A is 0.20<em>x</em> + 4. The inequality asks for when the cost of Taxi B will be greater than Taxi A, so you write it as 0.40<em>x </em>+ 2 > 0.20<em>x</em> + 4, or 0.20<em>x</em> + 4 < 0.40<em>x </em>+ 2.
The answer is B) 0.20<em>x</em> + 4 < 0.40<em>x </em>+ 2.
Answer:
598 meters
Step-by-step explanation:
In the problem, the word 'decend' means to decrease in elevation.
<u>Our equation:</u>
<u>
</u>
<u>Add</u><u> </u><u>153</u><u> </u><u>to</u><u> </u><u>both</u><u> </u><u>sides</u><u> </u><u>of</u><u> </u><u>the</u><u> </u><u>equation</u><u>:</u>

598 meters represents the original height of the helicopter.
B. the x-intercept is (1,0).
Complete Question:
The complete question is shown on the first uploaded image
Answer:
The probability that the random you randomly select species that are greater than 200 kg is = 7/62
Step-by-step explanation:
Step One: Load the data set in to the R work space
data(mammals,package="MASS")
attach(mammals)
Step 2 : Obtain the list of the species that are greater than 200 and store it on y variable.
y <- subset(mammals,body>200)
Step Three : Obtain the total size
nrow(mammals)
Step Four : Obtain the sum of species greater than 200
sum(body > 200)
total size = 62
size with body > 200 = 7
hence
required probability = 7/62