Perimeter P = 2L + 2W
b. P = 2*1010 + 2*1818 = 2020 + 3636 = 5656 inches
c. Area A = WL
d Area = 1010*1818 = 1836180 in^2
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
Part A: f(t) = t² + 6t - 20
u = t² + 6t - 20
+ 20 + 20
u + 20 = t² + 6t
u + 20 + 9 = t² + 6t + 9
u + 29 = t² + 3t + 3t + 9
u + 29 = t(t) + t(3) + 3(t) + 3(3)
u + 29 = t(t + 3) + 3(t + 3)
u + 29 = (t + 3)(t + 3)
u + 29 = (t + 3)²
- 29 - 29
u = (t + 3)² - 29
Part B: The vertex is (-3, -29). The graph shows that it is a minimum because it shows that there is a positive sign before the x²-term, making the parabola open up and has a minimum vertex of (-3, -29).
------------------------------------------------------------------------------------------------------------------
Part A: g(t) = 48.8t + 28 h(t) = -16t² + 90t + 50
| t | g(t) | | t | h(t) |
|-4|-167.2| | -4 | -566 |
|-3|-118.4| | -3 | -364 |
|-2| -69.6 | | -2 | -194 |
|-1| -20.8 | | -1 | -56 |
|0 | -28 | | 0 | 50 |
|1 | 76.8 | | 1 | 124 |
|2 | 125.6| | 2 | 166 |
|3 | 174.4| | 3 | 176 |
|4 | 223.2| | 4 | 154 |
The two seconds that the solution of g(t) and h(t) is located is between -1 and 4 seconds because it shows that they have two solutions, making it between -1 and 4 seconds.
Part B: The solution from Part A means that you have to find two solutions in order to know where the solutions of the two functions are located at.