Graphs a better done with pgfplots:

Notes:
- The
axis cs: is only needed if this is to be produced with versions priot to 1.11. So adding \pgfplotsset{compat=1.11} and using a recent version of pgfplots you don't need the axis cs:.
Code:
\documentclass{article}
\usepackage{pgfplots}
\usepackage{amsmath}
%% http://tex.stackexchange.com/questions/17438/how-to-properly-scale-a-tikz-pgf-picture-which-has-a-beginaxis-endaxis
\pgfkeys{/pgfplots/Axis Labels At Tip/.style={
xlabel style={
at={(current axis.right of origin)},
xshift=1.5ex, anchor=center
},
ylabel style={
at={(current axis.above origin)},
yshift=1.5ex, anchor=center
}
}
}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
x=1cm, y=1cm,% Better to let pgfplots do this, added in case it is important
axis y line=center,
axis x line=center,
xmin=-3, xmax=6,
ymin=-2, ymax=6,
grid=major,
Axis Labels At Tip,
xlabel=$x$, ylabel=$y$,
]
\addplot [blue, thick, domain=-3:6] {-(4/3)*x};
\addplot [red, thick, domain=-3:6] {(3/4)*x + 2};
\node [below left, blue] at (axis cs: -2,4) {$k$};
\node [below left] at (axis cs: 0,0) {$O$};
\draw[fill=black] (axis cs: 4,5) circle(0.5mm)
node[above left] at (axis cs: 4,5) {$A$};
\end{axis}
\end{tikzpicture}
\end{document}
Code: \pgfplotsset{compat=1.11}
\documentclass{article}
\usepackage{pgfplots}
\usepackage{amsmath}
\pgfplotsset{compat=1.11}
%% http://tex.stackexchange.com/questions/17438/how-to-properly-scale-a-tikz-pgf-picture-which-has-a-beginaxis-endaxis
\pgfkeys{/pgfplots/Axis Labels At Tip/.style={
xlabel style={
at={(current axis.right of origin)},
xshift=1.5ex, anchor=center
},
ylabel style={
at={(current axis.above origin)},
yshift=1.5ex, anchor=center
}
}
}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
x=1cm, y=1cm,% Better to let pgfplots do this, added in case it is important
axis y line=center,
axis x line=center,
xmin=-3, xmax=6,
ymin=-2, ymax=6,
grid=major,
Axis Labels At Tip,
xlabel=$x$, ylabel=$y$,
]
\addplot [blue, thick, domain=-3:6] {-(4/3)*x};
\addplot [red, thick, domain=-3:6] {(3/4)*x + 2};
\node [below left, blue] at (-2,4) {$k$};
\node [below left] at (0,0) {$O$};
\draw[fill=black] (4,5) circle(0.5mm)
node[above left] at (4,5) {$A$};
\end{axis}
\end{tikzpicture}
\end{document}
domain=-3:6to the last draw should work. Actually both can use the same range. – Jesse Nov 27 '14 at 03:52