This is quick worksheet that hits the basics of defining your own user-built function. Except for a few names, you can give a function just about any name you want. Also, the function can have as many arguments as you want and the arguments can stand for numbers, expressions or other functions. I will start with function that when given and , will create the right side of a slope-intercept linear equation. After that, I will create a similar function whose output will be a point-slope intercept form of a straight line using the values , , .
The basic code for making your own user-defined functions is:
def fn name(var1,var2,var3,...):
2*x + 3
2*x - 2