Ok, so we have to find areas and subtract
area=legnth times widht or base times height
parking space area=17 times 9=153
car=16 times 6=96
subtract
153-96=57
answer is 57 ft^2
If n is rational, it means that

Therefore when we do n² we can write it as

Remember that the product of two integer numbers is also an integer, therefore we can guarantee that

Then we can confirm that n² is the quotient of two integers and the denominator is not zero, therefore, n² is always rational, it cannot be an irrational number
Answer:
3+12i
Step-by-step explanation:
The difference of 5+3i and 2 + 1999 can be calculated as follows
= 5+3i - 2+9i
Collect the like terms
= 5-2+3i+9i
= 3+12i
Hence the difference of 5+3i and 2+9i is 3+12i
The two numbers I think is 3&6 because this is a trick question
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;
}