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

feat: add determinant algorithm #280

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

cosmicproc
Copy link

Implemented a determinant algorithm by using elimination.

Copy link
Contributor

@appgurueu appgurueu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What this essentially does is:

  1. Use row operations (swaps, addition of scaled multiples) to achieve an upper triangular form; keep track of number of swaps for the sign;
  2. Multiply the diagonal elements to find the determinant

I would ask you to factor out these two parts into two different functions or closures so this becomes more clear.

The first part in particular largely duplicates the logic in
https://github.com/TheAlgorithms/TypeScript/blob/master/maths/gaussian_elimination.ts.

It should ideally be possible to make this generic by simply having callbacks for row operations. Then both gaussian elimination and determinant computation could use the same function to achieve upper triangular form.

@cosmicproc
Copy link
Author

The original version of this code used different functions but I wasn't sure which one would be preferred so I decided to merge them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants