+0  
 
0
326
2
avatar

1.  Line $\ell_1$ is horizontal and passes through $(-5,8)$. Line $\ell_2$ is vertical and passes through $(4,-1)$. Find the point of intersection of $\ell_1$ and $\ell_2$.

 

2. Find the equation whose graph is shown below. Write your answer in standard form.

[asy]
size(150);
real ticklen=3;
real tickspace=2;

real ticklength=0.1cm;
real axisarrowsize=0.14cm;
pen axispen=black+1.3bp;
real vectorarrowsize=0.2cm;
real tickdown=-0.5;
real tickdownlength=-0.15inch;
real tickdownbase=0.3;
real wholetickdown=tickdown;
void rr_cartesian_axes(real xleft, real xright, real ybottom, real ytop, real xstep=1, real ystep=1, bool useticks=false, bool complexplane=false, bool usegrid=true) {
import graph;
real i;
if(complexplane) {
label("$\textnormal{Re}$",(xright,0),SE);
label("$\textnormal{Im}$",(0,ytop),NW);
} else {
label("$x$",(xright+0.4,-0.5));
label("$y$",(-0.5,ytop+0.2));  
}

ylimits(ybottom,ytop);
xlimits( xleft, xright);
real[] TicksArrx,TicksArry;

for(i=xleft+xstep; i if(abs(i) >0.1) {
TicksArrx.push(i);
}
}
for(i=ybottom+ystep; i if(abs(i) >0.1) {
TicksArry.push(i);
}
}

if(usegrid) {
xaxis(BottomTop(extend=false), Ticks("%", TicksArrx ,pTick=gray(0.22),extend=true),p=invisible);//,above=true);
yaxis(LeftRight(extend=false),Ticks("%", TicksArry ,pTick=gray(0.22),extend=true), p=invisible);//,Arrows);
}
if(useticks) {
xequals(0, ymin=ybottom, ymax=ytop, p=axispen, Ticks("%",TicksArry , pTick=black+0.8bp,Size=ticklength), above=true, Arrows(size=axisarrowsize));
yequals(0, xmin=xleft, xmax=xright, p=axispen, Ticks("%",TicksArrx , pTick=black+0.8bp,Size=ticklength), above=true, Arrows(size=axisarrowsize));

} else {
xequals(0, ymin=ybottom, ymax=ytop, p=axispen, above=true, Arrows(size=axisarrowsize));
yequals(0, xmin=xleft, xmax=xright, p=axispen, above=true, Arrows(size=axisarrowsize));
}
};
rr_cartesian_axes(-6,6,-6,6);
draw((-4.5,6) -- (1.5,-6), red,Arrows(size=0.2cm));
[/asy]

(Standard form is Ax+By=C, where A is positive, and A ,B , and C are integers with greatest common divisor 1.)

 

3. A line has a slope of -3/7 and its y-intercept is (0,18). What is its x-intercept?

 

4. Find y if the point (-6,y) is on the line that passes through (-1,7)  and (3,-2) .

 Apr 12, 2021
 #1
avatar
0

Please ask only one question at a time.

 Apr 12, 2021
 #2
avatar
0

3. A line has a slope of -3/7 and its y-intercept is (0,18). What is its x-intercept?

Guest Apr 13, 2021

3 Online Users

avatar
avatar