Finally working on the penultimate one of these. It's a water vole.

#digitalart #vectorart #graphicdesign #illustration #animals #scotland #fediart #vectors #vole #rodent #cute

Alright, future engineers!
**Linear Independence:** A set of vectors is LI if none can be written as a linear combination of the others.
Ex: `c1v1 + c2v2 = 0` only if `c1=c2=0`.
Pro-Tip: Think of LI vectors as spanning unique directions. No redundancy!
#LinearAlgebra #Vectors #STEM #StudyNotes
Alright, future engineers!
The **Dot Product** is a scalar value showing how much two vectors point in the same direction.
Ex: For `v=<a,b>`, `w=<c,d>`, `v.w = ac+bd`.
Pro-Tip: If `v.w = 0`, the vectors are perpendicular! Use this to check orthogonality.
#LinearAlgebra #Vectors #STEM #StudyNotes
Before you continue

#APLQuest 2016-04: Write a function that takes vectors as its left and right arguments and returns them “meshed” into a single vector formed by alternately taking successive elements from each argument (see https://apl.quest/2016/4/ to test your solution and view ours).

#APL #Vectors #Meshed

APL Quest 2016-4: Just Meshing Around

Write a function that takes vectors as its left and right arguments and returns them “meshed” into a single vector formed by alternately taking successive elements from each argument.

Alright, future engineers!
**Linear Combination:** A vector formed by scaling & adding other vectors.
Ex: `c1*v1 + c2*v2 + ...` (c=scalar, v=vector)
Pro-Tip: Essential for understanding vector `span` and `basis` in vector spaces!
#Vectors #LinearAlgebra #STEM #StudyNotes