Zero

Aathreya Kadambi
February 9, 2025

Welcome to the blog! This is a first post to demonstrate some of the capabilities of blogging via Astro with markdown. While doing so, we’ll get started with some of the fundamental ideas we’ll need this semester. For that reason, this will probably be a very long post, but in the future, posts may be of all different lengths.

Linear Algebra

A Brief Introduction

Linear algebra is sometimes said to be the only topic which we fully understand in the mathematics world. But even is “linear algebra”?

The word “linear”, roughly speaking, means “straight”. At least, this is a good intuition to have. For example, all straight lines and planes are “linear”. Great! But… intuition only gets us so far. That’s where “algebra” comes in. “Algebra” is the art of abstraction: assigning names to things we do not know, and using their properties to learn more about them.

How do we describe linear things? Well, one perspective is to look at linear functions (which pass through zero). For example,

f(x)=mxf(x) = mx.
This is “linear”, as we can see by looking at its graph: (it looks straight)

It turns out that there is a purely “algebraic” way to determine that this is a line! It is from the fact that

f(x+y)=f(x)+f(y)f(x+y) = f(x) + f(y).
We can check this: (it follows from the distributive property of R\R)
f(x+y)=m(x+y)=mx+my=f(x)+f(y).f(x+y) = m(x+y) = mx+my = f(x) + f(y).
Why does having this property guarantee linearity? We can see why at least for functions from R\R to R\R. First of all,
f(0+0)=f(0)+f(0)f(0)=2f(0)0=f(0)f(0+0) = f(0) + f(0) \Rightarrow f(0) = 2f(0) \Rightarrow 0 = f(0)
so f(0)=0f(0) = 0, and if we let f(1)=mf(1) = m, (I’m foreshadowing)
f(x+1)=f(x)+f(1)=f(x)+mf(x+1) = f(x) + f(1) = f(x) + m
so we know that to get from f(x)f(x) to f(x+1)f(x+1), we must add mm. If ff is continuous, then this actually means that f(x)=mxf(x) = mx. If you’re curious about the details, please see this blog post.

So we have a geometric view of linearity: straightness, and an algebraic view: distributivity. Linear algebra is all about connecting these two perspectives in many more ways.

Why Study Linear Algebra?

So far I have explained what linear algebra is, but why should data scientists care?

There are many ideas from linear algebra that are extremely useful in data science, but here are two we will highlight in this post:

Calculus Revisited

Why Calculus?

Calculus is the study derivatives and integrals. Why would that matter to a data scientist? Actually, derivatives and integration are at the heart of optimization problems, which every data scientist should care about. Often, we want to do something the right way, “right” and “wrong” being specified via a reward function or a loss function. We would then want to maximize or minimize (generally, “optimize”) these functions.

Again, there are many important ideas, but here are two:

Since optimization comes up everywhere, especially machine learning, calculus is a very important tool for data scientists.

Connection to Linearity

Interestingly, derivatives are linear! We can see this from the algebraic property:

ddx(f+g)=ddxf+ddxg\frac{d}{dx}(f+g) = \frac{d}{dx}f +\frac{d}{dx}g.
This is nice, since as we mentioned, we understand linear things quite well. Derivatives, generally speaking, are exteremely related to “tangents”, which are the best linear approximations to shapes and functions.

Conclusions

Math is extremely useful to data scientists, for developing intuition and understanding why models work. I hope you got something interesting from this post, either math or how to use LaTeX\LaTeX and embeds in an Astro MDX file! See you soon!

Comments

Not signed in. Sign in with Google to make comments unanonymously!