Challenge: Vector Algebra
Test the skills you learned in this section by performing basic mathematical operations on vectors.
We'll cover the following...
Problem statement
Handling and manipulating different data structures is important, especially when performing complex mathematical computations. You are tasked to implement basic vector operations like addition, subtraction, multiplication, scalar multiplication, and dot product of the numeric vector
objects. You must add size checking—the vectors being operated on have the same size—to any other implementation to create a robust vector
class. ...