|
|
|
|
|
by nearlynameless
2311 days ago
|
|
While this explanation is certainly much clearer than what I remember of high school maths, I still have a pretty tough time following the formula examples. When I see A(x) = ax, I'm not entirely sure how to read it. Is A meant to be a function that accepts x? If so, why is the equivalent expression a * x? Is it supposed to be implied that function A also has some hidden value "a" that is going to be multiplied by the supplied value? Is this notation specific to multiplication, to this expression, or what? Positing that something is 'intuitive' when it depends so much on additional contextual knowledge seems ever so slightly disingenuous as best, and slightly harmful at worst; it can make the reader feel as though they must be dumb for not understanding this 'intuitive' material. I do acknowledge that this is linear algebra, and if one doesn't have a really solid grasp of notation of regular algebra it is likely to go over their heads, but the practical explanations (such as the slope rise/run example) are quite clear and relatively simple to follow; it follows that a simple explanation of the notation might be helpful too. |
|
F(a * x) = a * F(x)
This is showing the relationship between two uses of the same function.
Then, further along, we find:
"So, what types of functions are actually linear? Plain-old scaling by a constant, or functions that look like: F(x)=ax In our roof example, a=1/3"
I think in this second situation, F(x)=ax is not a relationship but rather a DEFINITION of the function F(x).
In programming terms:
function F(x: real) : real;
begin
end;