Chapter 1: Vectors, what even are they? | Essence of Linear Algebra
BeginnerKey Summary
- â˘This lesson explains what a vector really is from three connected views: a directed arrow in space, a coordinate like (4, 3), and a list of numbers like [4, 3]. Thinking of vectors as arrows makes direction and length feel natural, while coordinates make calculation easy. Both are the same thing described in different ways. You can move an arrow anywhere without changing the vector, as long as its direction and length stay the same.
- â˘A vector in 2D tells you how far to move sideways (x) and up/down (y). In 3D, you also move forward/back (z). The numbers that describe these moves are called coordinates or components, and we often write them as a vertical column. The same vector can have different coordinates if you change the coordinate system (the way you set up your axes).
- â˘Linear algebra generalizes vectors to any dimension, even 4D, 100D, or more. You cannot draw higher dimensions easily, but you can still work with them as ordered lists of numbers. Computer science often calls any ordered list a âvector,â which matches this idea. What matters is that the same two operationsâvector addition and scalar multiplicationâwork the same in any dimension.
- â˘Vector addition combines movements. Draw the first arrow, then from its head draw the second arrow; the final arrow from the first tail to the last head is the sum. In coordinates, you add each component: (1, 2) + (3, -1) = (4, 1). This head-to-tail rule shows why component-wise addition makes sense.
- â˘Scalar multiplication stretches or shrinks a vector. Multiplying by 2 doubles its length; multiplying by 0.5 halves it. Multiplying by a negative number flips its direction while scaling its length. In components, every entry gets multiplied by the same scalar.
- â˘Coordinates depend on your choice of coordinate system, like rotating your axes or changing the scale. The vector itself doesnât change when the coordinate system changesâonly its coordinate description does. Thatâs why itâs sometimes clearer to think with arrows rather than numbers. But numbers are handy for exact calculation.
Why This Lecture Matters
Vectors are the language of direction and change, so learning them clearly helps in many fields. If you work in physics, vectors describe forces, velocities, and accelerations; combining them with addition models net effects. In computer graphics and robotics, vectors describe positions, movements, and orientations; scaling and adding vectors guide animation, camera motion, and robot navigation. In data science and machine learning, each data point is a vector of features; the same component-wise rules let you compute distances and transformations in high dimensions. Even in simple programming tasks, thinking of data as vectors (ordered lists) helps you organize and process information. This lesson solves a common confusion: mixing up a vector with its coordinates or with a point. By separating the geometric idea (direction and length) from its numeric description (coordinates), you avoid mistakes when axes change or when switching between 2D drawings and higher-dimensional lists. The practical skillsâhead-to-tail addition and scalar multiplicationâare the two moves used everywhere in linear algebra, setting you up for span, bases, and linear transformations later. Knowing when to use the arrow picture for intuition and when to use components for exact calculation makes you both fast and accurate. Mastering these basics strengthens your ability to model real problems, communicate solutions, and grow into more advanced topics that power modern technology.
Lecture Summary
Tap terms for definitions01Overview
This lesson introduces vectors in a way that connects three everyday meanings: arrows in space, coordinates like (4, 3), and lists of numbers like [4, 3]. The goal is to help you see that these are not three different things but three views of the same thing. Each view has strengths. The arrow view makes it easy to feel the direction and length, and it shows how moving the arrow around without changing its direction and length keeps it the same vector. The coordinate view captures the same idea in numbers, which is great for calculation. And the list-of-numbers view lets us work with any number of dimensions, even when we canât draw them.
This lesson is for beginners who want a solid, intuitive start to linear algebra. No advanced math is neededâonly comfort with basic arithmetic and a little geometry. If youâve plotted points on an xây graph or moved in a 2D grid, youâre ready. The lesson explains what vectors are, how to add them, and how to scale them (multiply by a number). Youâll also learn that the coordinates we use for a vector depend on how we set up the axesâthe coordinate systemâbut the vector itself is more than just the numbers; itâs the idea of a direction and length (and position change) that those numbers describe.
By the end, you will be able to: recognize and draw vectors as arrows starting from the origin; write vectors as coordinates or as a column of numbers; add vectors using the head-to-tail rule and with component-wise addition; and scale vectors to stretch, shrink, or flip them. Youâll also understand why thinking in both pictures (arrows) and numbers (coordinates) is powerful. With these skills, youâll be ready for the next key idea: spanâhow combinations of vectors can reach new places.
The lesson is structured in a natural flow. First, it asks, âWhat is a vector?â and answers from three viewpoints: an arrow from the origin, a pair/triple/list of numbers, and a general container for ordered data. Then it explains how the same vector can be shifted in space (without changing what it is) and how coordinates track sideways and vertical movement in 2D (and, by idea, depth in 3D). You see that coordinates are a convenient description but depend on the chosen coordinate system. After that, the core operations are introduced. Vector addition is shown with the head-to-tail rule and as âdoing two movements at the same time,â which directly matches adding the components. Scalar multiplication is shown as stretching, shrinking, or reversing the arrow and as multiplying every component by the same number. Finally, the lesson emphasizes that these two operationsâaddition and scalingâare the simple building blocks for all of linear algebra, and it hints at what comes next: span, the set of all vectors you can reach by combining given vectors with these two operations.
Key Takeaways
- âDraw vectors as arrows from the origin to keep their identity clear. If you slide the arrow without turning or stretching, itâs still the same vector. Focus on direction and length; ignore where the arrow is placed. This habit prevents mixing up vectors with specific locations.
- âWrite vectors as columns and add them component-wise for quick calculation. Always add top-to-top, bottom-to-bottom (and so on). Check your work with a quick sketch to see if the direction looks right. The geometry and the numbers should agree.
- âUse the head-to-tail rule to add vectors visually. Place the second vectorâs tail at the firstâs head and draw the resultant from the original tail. This shows addition as doing one movement after another. Itâs a reliable way to build intuition before computing components.
- âScale vectors by multiplying every component by the same number. Positive scalars stretch or shrink while keeping direction, and negative scalars flip direction too. Check extremes: 0 collapses to the zero vector; -1 flips without changing length. Sketching helps lock in the feel.
- âSeparate vectors from points in your thinking. A point marks a location; a vector marks a movement. Never add a point to a point thinking itâs vector addition. Use vectors to represent displacements between points.
- âRemember that coordinates depend on your choice of axes. Rotating or rescaling your axes changes the coordinate description but not the vector itself. When something seems to âchange,â ask if the axes changed. Keep the arrow picture in mind to stay oriented.
- âSwitch between pictures and numbers depending on whatâs easiest. Use arrows to reason about direction and combined movement; use coordinates for exact sums and scalings. In higher dimensions, lean on the numeric rules. Let each view support the other.
Glossary
Vector
A vector is a mathematical object that has direction and length. You can picture it as an arrow starting at the origin and pointing somewhere. It shows how to move from one place to another. Vectors are used in any number of dimensions, not just 2D or 3D. They are more about movement and change than about fixed locations.
Arrow representation
This is the picture of a vector as a directed arrow. The tail is at the starting point (usually the origin), and the head shows where you end up. The length shows how big the movement is, and the direction shows where it goes. Sliding the arrow around without turning or stretching it doesnât change the vector. This makes the drawing focus on direction and length.
Origin
The origin is the zero point in a coordinate system. In 2D itâs (0,0), and in 3D itâs (0,0,0). Vectors are often drawn with tails at the origin because it makes addition and scaling easier to picture. Itâs like the home base for directions. Starting from there keeps things simple.
Coordinate
A coordinate is a number that tells you how far to move along an axis. In 2D, you have two coordinates: x (left/right) and y (up/down). In 3D, there are three coordinates: x, y, and z. Together, they describe the components of a vector. Changing axes changes these numbers, but not the vector itself.
