This file describes educational goals that need to be met; what have I been assigned to do?
- Grade 12 CS C: Recursive Algorithms
- factorials - implemented
factorial(n: int) -> intinrecursive_math.py.
- factorials - implemented
Implement an algorithm for solving linear systems.
Use matrices to solve them, and see section 1.2 of the textbook for how to do that.
They can be represented as a matrix, for example:
could be represented as:
Gaussian elimination should then be used to solve this, which is shown in a Drawy notes file.
One relevant library I found (my own research) is the memory-graph pip
package.