Skip to content

Mistake in the gaussian elimination chapter. #592

Closed
@Trashtalk217

Description

@Trashtalk217

At The Computational Method -> Step 2 there is a mistake in the first calculation.

instead of:

f = A(pivot_row, pivot_col) / A(curr_row, pivot_col)
  = 1/3

it should be:

f = A(curr_row, pivot_col) / A(pivot_row, pivot_col)
  = 1/3

Because the pivot value is 3 and the current value is 1, resulting in 3/1 in the first equation.

Metadata

Metadata

Assignees

Labels

ProblemThis is a problem in the archive or an implementation.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions