Answer:
Using c++
Check the image for colors.
Step-by-step explanation:
#include <iostream>
using namespace std;
int main()
{
float length1,length2,width1,width2,area1,area2;
cout<<"length of Rectangle 1\n";
cin>>length1;
cout<<"\nwidth of Rectangle 1\n";
cin>>width1;
cout<<"\nlenght of Rectangle 2\n";
cin>>length2;
cout<<"\nwidth of Rectangle 2\n";
cin>>width2;
area1=length1*width1;
area2=length2*width2;
if (area1<area2)
{cout << "\nRectangle 2 has greater area";}
else {
if (area1>area2)
{cout << "\nRectangle 1 has greater area";}
else {cout << "\nAreas are the same";}
}
return 0;
}
Answer:
Step-by-step explanation:
Let x be the random variable representing the the length of newborn babies (in inches). Since it is normally distributed and the population mean and population standard deviation are known, we would apply the formula,
z = (x - µ)/σ
Where
x = sample mean
µ = population mean
σ = standard deviation
From the information given,
µ = 20 inches
σ = 2.6 inches
the probability that a given infant is between 14.8 and 25.2 inches long is expressed as
P(14.8 ≤ x ≤ 25.2)
For x = 14.8,
z = (14.8 - 20)/2.6 = - 2
Looking at the normal distribution table, the probability corresponding to the z score is 0.023
For x = 25.2
z = (25.2 - 20)/2.6 = 2
Looking at the normal distribution table, the probability corresponding to the z score is 0.98
Therefore,
P(14.8 ≤ x ≤ 25.2) = 0.98 - 0.23 = 0.75
30^2= 30×30=900 so 30^2 is the answer
Answer:
Let
x = number of yards mowed
The domain of the function is
5 ≤ x ≤ 20
If we multiply the inequality by 25, we get
125 ≤ 25*x ≤ 500
Which is the same as
125 ≤ f(x) ≤ 500
(Range of the function)
Domain 5 ≤ x ≤ 20
Range 125 ≤ f(x) ≤ 500