You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
davidrobert99 167027b977 update exam exercises 2 years ago
..
README.md docs(matrix_determinant) correct grammar 2 years ago
determinant-of-a-3x3-matrix-formula-3.png update exam exercises 2 years ago

README.md

matrix_determinant

Instructions

Create a function which receives a 3x3 matrix ([[isize; 3]; 3]) and returns its determinant isize.

This is how you calculate a 2x2 matrix determinant:

|a b|
|c d|

a*d - b*c

To calculate a 3x3 matrix determinant you have to take 'a' and multiply it by the determinant of the matrix you get if you get rid of the 'a' column and the 'a' row. Then you subtract the multiplication of 'b' and the determinant of the matrix you get if you get rid of the 'b' column and row. And finally, you do the same process for 'c' and add it to the previous result.

|a b c|
|d e f|
|g h i|

imagem

Expected Function

pub fn matrix_determinant(matrix: [[isize; 3]; 3]) -> isize {

}

Example

Here is a program to test your function:

fn main() {
    let matrix = [[1, 2, 4], [2, -1, 3], [4, 0, 1]];

    println!(
        "The determinant of the matrix:\n|1  2  4|\n|2 -1  3|  = {}\n|4  0  1|",
        matrix_determinant(matr)
    );
}

And its output:

$ cargo run
The determinant of the matrix:
|1  2  4|
|2 -1  3|  = 35
|4  0  1|
$