Difference between revisions of "Y-intercept"
(Created page with "place where line intersects y axis") |
Mathandski (talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | ==Quick Description== | |
+ | The point or value where a function intersects y axis. | ||
+ | |||
+ | ==Quick Example== | ||
+ | The y-intercept of the line <math>y = 2x + 1</math> is 1. | ||
+ | |||
+ | <asy> | ||
+ | draw((-10,0)--(10,0)); | ||
+ | draw((0,-10)--(0,10)); | ||
+ | draw((-5.5, -10)--(4.5, 10)); | ||
+ | dot((0,1)); | ||
+ | </asy> |
Latest revision as of 19:22, 18 May 2020
Quick Description
The point or value where a function intersects y axis.
Quick Example
The y-intercept of the line is 1.