Use elimination
-x - y = -9
x - y = 3
Add both equations
-2y = -6, y = 3
-x -(3) = -9
-x = -6, x = 6
Final answer: x = 6, y = 3
Answer:
7/1000
Step-by-step explanation:
1 m = 1000 mm
Therefore,
Scale factor = 7/1000
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
Answer:
This line tells Charles that the point must lie in Quadrant 3 if r is positive or Quadrant 1 if r is negative.
The value of r is negative. Therefore, the point will lie in the opposite quadrant as the angle of rotation.
Step-by-step explanation:
With polar coordinates the first value represents the distance from the origin and the second value represents the rotation from 0. In this case the distance from the origin value is negative, which means it will be in the opposite quadrant to the angle of rotation.
(-5, −3π/4) results in the same point as (5, π/4)
A rotation of −3π/4 results in the same rotation as 5π/4
The rotation results in Quadrant 3 but because the distance value is negative the final resulting point is in Quadrant 1.