Challenge: Calculate the Largest Independent Subset
Explore how to write a function that computes the largest linearly independent subset from a given set of vectors. Understand the use of Gaussian elimination to detect dependencies and apply this to identify independent vectors for solving linear systems.
We'll cover the following...
We'll cover the following...
Statement
Write a largestIndependentSubsetCalculator function that takes a collection of vectors , where all vectors belong to the same vector space, and returns the largest linearly independent subset (this subset could be any subset and need not be unique).
Example
Consider an example of a collection of vectors:
...