Lesson BASICS of linear functions
Algebra
->
Coordinate Systems and Linear Equations
->
Lessons
-> Lesson BASICS of linear functions
Log On
Linear Solvers
Linear
Practice
Practice
Answers archive
Answers
Word Problems
Word
Lessons
Lessons
In depth
In
Source code of 'BASICS of linear functions'
This Lesson (BASICS of linear functions)
was created by by
longjonsilver(2297)
:
View Source
,
Show
About longjonsilver
:
I have a new job in September, teaching
<H3>1.1 Introduction</h3> Any linear equation <b>y=mx + c</b>, where m and c are just constants (ie numbers) describes a straight line. When a straight line equation is written in this form, the m and c values mean something on the graph: <UL> <LI>m = the gradient (slope)</LI> <LI>c = the y-intercept</b> (where the line crosses or cuts the y-axis).</LI> </UL> so, y=3x+2 means: the line has a gradient of +3 and crosses the y-axis at y=2. and y=-2x-7 means: the line has a gradient of -2 and crosses the y-axis at y=-7. EXAMPLE: 1. Find the gradient and y-intercept of the equation 12x-3y=15 solution: First, re-write this in the form y=mx+c, so we get... 12x-15 = 3y or, the other way round, 3y = 12x-15. Now divide by 3, to give y=4x-5. So, the gradient is +4 and the y-intercept is -5. <H3>1.2 Gradient </H3> <BLOCKQUOTE>What does the gradient look like? What is the definition of the gradient? </BLOCKQUOTE> Well, definition first. For 2 points (x1, y1) and (x2, y2) <b>{{{Gradient = change_in_y/change_in_x = (y[2]-y[1])/(x[2]-x[1])}}}</b> This definition applies to any straight line or curve or physical entity. Always. EXAMPLE: 1. Given the 2 points (1,2) and (3,6), what is the gradient between these 2 points? solution: The order of the 2 points does not matter: you pick one pair and take the other pair of coordinates away. Or you do it the opposite way. It does not matter. Just decide yourself and stick with it. I shall show you both, to prove that the order of the points does not matter.... As gradient, m is defined as (y2-y1)/(x2-x1) we get either: {{{m = (6-2)/(3-1) = 4/2 = 2 }}} or {{{m = (2-6)/(1-3) = (-4)/(-2) = 2 }}} Looking at these 2 ways of getting the same answer, one of them is simpler than the other. If you pick the easy way then good. If not, do not worry... stick to the definition and do not make a mistake with your negative signs and you will get the right answer. <h3>1.3 Visualising Gradients </h3> <b>A positive gradient is any line like / A negative gradient is any line like \ </b> Example of y = 2x+3, with <U>positive slope</U>: {{{ graph( 100, 80, -5, 5, -10, 10, 2x+3) }}} Example of y = -x+2, with <U>negative slope</U>: {{{ graph( 100, 80, -5, 5, -5, 5, -x+2) }}} <b>A gradient of 1 is a line drawn at 45 degrees. </b> A gradient of 2 is a steeper line than this (but not 90degrees!). A gradient of 3 is steeper still... etc. A gradient of 1/2 is a line less than 45 degrees (but not as small as 22.5 degrees). On this graph, y=x is <FONT COLOR=red>red</FONT>, y=2x is <FONT COLOR=green>green</FONT>, y=3x is <FONT COLOR=blue>blue</FONT>, y=4x is <FONT COLOR=violet>violet</FONT>: {{{graph( 300, 200, -5, 5, -5, 5, x, 2x, 3x, 4x) }}} As you can see, the angle is not a linear function of gradient... gradient of 2 is twice as steep but that does not mean the angle the line makes with the floor is doubled when you go from a gradient of 1. So be aware of that. If you want to know, for curiosity's sake: The angle for gradient=2 is about 63 degrees. The angle for gradient=3 is about 72 degrees. When you sketch, you are doing a SKETCH! so do not get a protractor out to get the correct angle, just draw a valid / or a \ line and then mark on the points where the line cuts the axes.