Practice question · Multiple choice
In a machine learning dataset, two features are recorded: temperature in Celsius and the same temperature in Fahrenheit. What does linear algebra say about the model that follows?
Hints
- F = 1.8C + 32. Ask whether the second column adds any direction the first did not.
- If two columns carry the same information, how many ways are there to split the weight between them?
Show the answer
C. The columns are linearly dependent, so the fit is unidentifiable
Why
One column is an affine function of the other, so it contributes no new direction and the weight can be split infinitely many ways. Predictions stay fine and the coefficients become uninterpretable, which is multicollinearity, and why 'the model works but the coefficients flip sign every refit' is a dependency problem rather than a mystery.
Practise Linear Independence
The app has 5 more questions on this lesson, and keeps your place in the course. Mathematics I is free to start.
More questions on Linear Independence
- Sort each set of vectors by whether it is linearly independent.
- The set {u, v, w} is linearly DEPENDENT. Select every statement that must then be true.
- Order the steps of testing whether three vectors in space are linearly independent.
- Three vectors in three-dimensional space, no one of them a scalar multiple of any other, can still be…
- A set of three vectors in three-dimensional space in which no vector is a scalar multiple of any other must…