This example shows how R adds two vectors element by element. Starting with vectors a and b, each element pair is added to form a new vector c. The execution table traces each addition step, showing the values combined and the result. The variable tracker shows how c builds up over time. Beginners often wonder why R does element-wise addition instead of summing all elements; this is because vector arithmetic is designed to work element-wise. Also, if vectors have different lengths, R recycles the shorter vector's elements to match the longer one. The visual quiz tests understanding of the step-by-step addition and behavior with different vector lengths.