129k views
5 votes
Brainy plot and labels points P (-5/2), Q (2 3/4), R(1.25), and S(-3.5) on the number line

User ArwynFr
by
7.6k points

1 Answer

4 votes

Answer:

Explanation:

To plot points P (-5/2), Q (2 3/4), R(1.25), and S(-3.5) on a number line, we can simply draw a horizontal line and mark off the positions of the points. The numbers on the number line will represent the values of the x-coordinates of the points.

[asy]

unit size(1cm);

draw((-7,0)--(5,0));

draw((-7,0)--(-7,1)--(5,1)--(5,0)--cycle);

dot("$P$", (-5/2,0), S);

dot("$Q$", (2 3/4,0), S);

dot("$R$", (1.25,0), S);

dot("$S$", (-3.5,0), S);

[/asy]

On the number line, point P is located at -5/2, point Q is located at 2 3/4, point R is located at 1.25, and point S is located at -3.5.

User Rick Giuly
by
7.3k points