I need help to find the root?
9514 1404 393
Answer:
4n
Step-by-step explanation:
We observe that each output is 4 times the corresponding input. Then 4 times n will be ...
Input: n
Output: 4n
11/8 or 13/8 is the answer.
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:
The graph in the attached figure
Step-by-step explanation:
we know that
The equation of a vertical parabola in vertex form is equal to

where
a is a coefficient
(h,k) is the vertex
In this problem we have
(h,k)=(1,-4)
substitute

we have
An x-intercept of (-1,0)
substitute and solve for a




The equation is

<u><em>Verify the y-intercept</em></u>
For x=0


The y-intercept is the point (0,-3) -----> is correct
using a graphing tool
see the attached figure