Answer:
pq =28
Step-by-step explanation:
you set up the equation by making them equal each other 3x+4= 5x-12 and solve From there
Answer:

Step-by-step explanation:
If it has a slope of 3/4, then it will look like this:

If it passes through (4, 0), than y = 0 when x = 4



Therefore, the equation is
.
840=2 times 2 times 2 times 3 times 5 times 7
9514 1404 393
Answer:
5.5
Step-by-step explanation:
The rate of change is given by the slope formula:
m = (y2 -y1)/(x2 -x1)
m = (16.5 -11)/(3 -2) = 5.5/1
m = 5.5
The rate of change of this function is 5.5.
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