Answer:
-3 2/3
Step-by-step explanation:
Find LCM of fractions by first converting them from mixed fraction to improper fraction
We conduct long division, cancelling each term in x³ + 6x² + 3x + 1. As so:
x²(x -2) = x³ - 2x²
Subtracting from the original equation, we get:
8x² + 3x + 1
8x(x - 2) = 8x² - 16x
Subtracting from the new equation, we get:
21x + 1
21(x - 2) = 21x - 42
Subtracting from the new equation, we get:
43
The answer is x² + 8x + 21 with a remainder of 43.
Answer: there’s no slope?
Step-by-step explanation: confused
The formula to find the circumference is C=2pi(r). Just multiple 2 time 3.14 times six(the radius). You should get 37.68 ft for your answer
Answer:
(a) 4i times
(b) "i × n" times
Step-by-step explanation:
(a) Given the algorithm segment;
for i := 1 to 4, (Outer loop)
for j := 1 to i (Inner loop)
next j,
next i
The inner loop runs for i times, while the outer loop runs for 4 times.
The total times the inner loop would run when the entire algorithm is run is:
= i × 4
= 4i times
(b) Given the algorithm segment;
for i := 1 to n, (Outer loop)
for j := 1 to i (Inner loop)
next j,
next i
Where n is a set of positive integers.
The inner loop runs for "i" times, while the outer loop runs for "n" times.
The total times the inner loop would run when the entire algorithm is run is:
= i × n
= "i × n" times