1 answer
1
please explain all relationship between determinant and determinant of adjoint and so on and also how to derive them in run time during exam if I forget
2 answers
2
int zap(int n){if (n<=1) then zap =1;else zap = zap(n-3)+zap(n-1);}then the call zap(6) gives the values of zapGive the proper explanation