Given:
Sum of interior angle
To find:
Number of sides of a polygon
Solution:
Using sum of interior angles formula:

where "S" is the sum of interior angels and "n" is the number of sides of a polygon.
Divide by 180° on both sides.

Cancel common factor 180°.

Add 2 on both sides.


Switch the sides.

Therefore number of sides of a polygon is
.
Hm in decimal form it’s .. 2.38095 or 2.3. Fraction 23/10 .. Percentage is 239%.. If this doesn’t help. Tell me what u mean and I’ll try my best to help!
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;
}
Answer:
- 8
Step-by-step explanation:
To evaluate f(8) substitute x = 8 into f(x)
f(8) = - 2(8) + 9 = - 16 + 9 = - 7
Similarly for g(- 1)
g(- 1) = (- 1)² - 2 = 1 - 2 = - 1
Then
f(8) + g(- 1) = - 7 + (- 1) = - 7 - 1 = - 8