Answer:
The answer is 20 meters squared
base area = side^2 = 2^2 = 4 m^2
base perimeter = (2 x 4) = 8 m
lateral surface = (base perimeter x slant height)/2 = (8 x 4)/2 = 16 m^2
surface area = (base area + lateral surface) = (4 + 16)= 20m^2
Answer:
The slope is 1/5
Andre is saving 4 dollars per week.
Step-by-step explanation:
If you divide by two then the answer would be 1.500 tickets that were sold at the game.
Answer: f(x) = 4 if -1 ≤x ≤ 1
f(x) = x - 1 if 3≤ x ≤ 5
Step-by-step explanation:
if -1 ≤x ≤ 1
We can see that in this range the function is constant, f(x) = 4
if 3≤ x ≤ 5
In this region we can see a linear relationship, with the points (3, 2) and (5, 4)
as the extremes, we can find the slope of this linear equation as:
s = (4 - 2)/(5 - 3) = 2/2 = 1
So our equation is
f(x) = 1*x + b
to find the value of b we can evaluate our function in the first point, we know that when x = 3, y = 2, so we have:
2 = 1*3 + b
b = 2- 3 = -1
then f(x) = 1*x - 1
Then we have:
f(x) = 4 if -1 ≤x ≤ 1
f(x) = x - 1 if 3≤ x ≤ 5
Answer:
The code is attached. I used python to define the function and matplotlib library to plot the histogram.
Step-by-step explanation:
- I defined a function called roll_hundred_pair
- I imported matplotlib.pyplot as plt and random
- I defined a list called dice
- I created an empty list to collect dice results
- I simulated 100 dice roll using a <em>loop</em> and <em>random.sample</em>
- finally I plot the histogram using plt.hist method