1 Introduction
In this course, we are going to study calculus using the concepts from linear
algebra.
1.1 Vector norm
Definition 1.1. Euclidean norm of ~x = (x1, x2, . . . , xn)is given as
k~xk=√~x ·~x =v
u
u
t
n
X
j=1
x2
j
Theorem 1.1 (Properties of a norm).
1. k~xk ≥ 0and k~xk= 0 iff ~x =~
0 = (0,0,...,0).
2. For all scalars a∈R,ka~xk=|a|·k~xk.
3. (Triangle inequality) k~x +~yk≤k~xk+k~yk.
We say that this is a property of a norm because there are other norms, which
measure distance in Rnin different ways!
Example 1.1.1 (A non-pythagorian norm - The Taxi Cab Norm).Consider
the following vector ~p = (p1, p2)∈R2. The euclidean norm gives the length of
the diagonal line. On the other hand,
k~pk1=|p1|+|p2|
gives us the total distance in a rectangular grid system.
For ~p = (p1, p2, . . . , pn)∈Rn,k~pk1=Pn
j=1 |pj|. Note that the Taxi Cab
norm is a valid norm because it satisfies all properties of a norm above. So it also
gives us a valid alternative way to measure distance in Rn, dist(~p, ~q) = k~p −~qk.
This way of measuring distance gives Rnadifferent geometry.
Definition 1.2. Neighborhood of a point ~p, or disks centered at ~p is defined as
Dr(~p) = ~x ∈Rnk~x −~pk< r
Remark. The neighborhood around ~a of radius rmay be written using any of
the following notations:
Dr(~a) = Br(~a) = B(~a, r)
Definition 1.3. Sphere is defined as
Sr(~p) = ~x ∈Rnk~x −~pk=r
3