Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add failing RREF Case #475

Closed
wants to merge 2 commits into from
Closed

Commits on Nov 9, 2023

  1. Add successful rref case and its failing counterpart

    The matrix with the bigger magnitude passes, the same matrix scaled by its largest eigenvalue fails. Yet they should have the same rref.
    Aweptimum committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    3ec7c55 View commit details
    Browse the repository at this point in the history
  2. REF: scale by smallest non-zero element

    Since we're technically manipulating a linear system, it seems that the property of the final result remaining the same despite scaling applies. If scaling by the inverse of the smallest element, the matrix error becomes relative to the magnitudes of the numbers rather than an absolute quantity.
    
    This intuition seems true because all of the tests pass
    Aweptimum committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    f386771 View commit details
    Browse the repository at this point in the history