<style> .katex-display, .katex-display>.katex, .katex-display>.katex>.katex-html { display: unset !important; } </style> ## Vectors > NOTE: We will not be using the mathematical notation shown in the video. --- <iframe width="940" height="560" style="display: block; margin: 0 auto;" src="https://www.youtube.com/embed/ml4NSzCQobk?si=g27ZfyfjCwsCZ7ZP" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> --- ### Vectors and Scalars - A **scalar** is a quantity. Example: I have 5 apples. - A **vector** is has a magnitude and direction. Example: 20 mph travelling northeast. --- ### Components of Vector A 2D vector `$$ \vec{a} $$` is made up of an x-component `$$ a_x $$` and a y-component `$$ a_y $$`.  --- ### Magnitude of Vector From the Pythagorean Theorem. Where `$$ |\vec{a}| $$` is the "magnitude" of the vector, or its length. `$$ |\vec{a}| = \sqrt{a_x^2 + a_y^2} $$` --- ### Direction of Vector We may or may not use this. It is likely beyond the scope of this class. But here it is. `$$ \theta = \tan^{-1}\left(\frac{a_y}{a_x}\right) $$`