Processing math: 60%

Notes on variables

Contents

things to talk about eventually:

Concepts to discuss:

Mathematicians and computer scientists are usually not careful with a function versus the output of a function. So for instance when using the big-Oh notation, people will write O(n) (which is imprecise, because it doesn’t specify what the input variable is; is n the parameter or a constant?) instead of “O(f), where f(n)=n” or “O(λn.n)”.

Similarly, when dealing with Laplace transforms, it seems common to write both L{f(t)}=F(s) and L{f}=F(s); but s is not present on the left hand side of either denotation! To be pedantic, we would need to write L{f}=F or L{f}(s)=F(s) or L{λt.f(t)}(s)=F(s).

In differential equations, it also seems common to write something like y but y is a function depending on t, so shouldn’t it instead be the following? y''(t) + p(t)y'(t) + q(t)y(t) = f(t) Or more simply y'' + py' + qy = f

Questions


Tags: logic, math.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.