Answer:
x⁵ + 5x³ + 7x² + 35
Step-by-step explanation:
(x² + 5) (x³ + 7)
To distribute binomials (expressions with two terms), you can use the FOIL method (First, Outer, Inner, Last):
x⁵ + 7x² + 5x³ + 35
To put into standard form, rearrange from highest power to lowest power:
x⁵ + 5x³ + 7x² + 35
I believe it's the 3rd one
100°+(4y+25)+(3y+20)=180°
100+4y+25+3y+20=180
7y+145=180
7y=35
y=5
100°; 45°; 35°
The best prediction for the number of regular spectators that the program will have in 6 years is obtained with the following formula:
Pf = Po×(1-b) ^ t
Where:
Pf = final population
Po = initial population
b = decrease rate
t = timpo in years
So:
Pf = 223.00×(1-0.047) ^ 6
Pf = 167,056
The answer is the last option.
// Input value is usernum.
// This code snippet sums 1 + 3 + 5 + ... + usernum
// The answer is stored in the variable summedvalue.
N = (int) (usernum+1)/2; // maximum number of integers to be summed
int *v = malloc(N*sizeof(int)); // allocate storage for array v
// Calculate the number of loop counts and assign array v..
count = 0;
k = 1;
while (1) {
if (k>usernum) { // do not extend v beyond usernum
break;
}
v(count) = k; // assign an odd integer to v, including usenum
count++;
k += 2; // k is an odd number
if k>usernum { // handle usernum as odd or even
k = usernum;
}
}
n = count; // the size of array v.
// Calculate the sum in a for loop
summedvalue = 0; // initialize summedvalue
for (i=0; i<=n; i++) {
summedvalue += v(i);
}