I'm trying to do this:

In this graph, the secant points are aproximated in order to become the tangent, it seems I need some kind of function which plots a line based on two points and it's points do not limit the end of the line.
This is what I could do, as you can evaluate (see?), you'll see the line ends at the proposed points.
Show[{
Plot[{15 - 2 x^2}, {x, -1, 3}],
Graphics[Line[{{1, 13}, {2, 7}}]]
}]
I've read the reference on line but I still have no idea on how to do it, I imagine there are two ways of doing it, (1) the way I did, with Line; (2) With the Plot function.







Line[]object always has two ends, by its very nature (so it is properly a line segment as opposed to a line)... what you can do is to have yourLine[]extend past thePlotRangeof your plot... – J. M.♦ Sep 15 '12 at 10:21