How to use for loops to calculate the determinant of the first n powers of 2x2 matrix (A) without using the implicit Matlab command "det"
Show older comments
I am allowed to use the for loop as well as if/elseif/else statements to create the function but I am not sure how exactly to do this. The input will be a matrix A and a scalar value n. I began using if statements to make sure that the matrix is 2x2 and that n is positive however i do not know how to code for det(A^n) without using the det function. Below is an example of what i have thus far:
function ret = invertiblePowers(A,n)
if isequal(size(A), [2 2])==0
ret= disp('Matrix has wrong dimensions')
elseif floor(n)~=ceil(n)
ret= disp('n is not a positive integer')
elseif isequal(size(A), [2 2])==1 & floor(n)=ceil(n)
Accepted Answer
More Answers (2)
Walter Roberson
on 28 Sep 2015
0 votes
This together with the fact that with SVD, the N'th power of the matrix can be found by taking the N'th power of the diagonal.
Or you could just use the formula for the determinant of a 2 x 2 matrix.
4 Comments
Blake
on 28 Sep 2015
Edited: Walter Roberson
on 28 Sep 2015
WAT
on 28 Sep 2015
A few issues that I can see right away:
The way you have your function set up, 'ret' is going to be your returned variable. This doesn't match up with using
ret = disp('Matrix has wrong dimensions')
If you try to test out using disp in this way you'll get an error telling you you have too many output arguments.
Also, checking if floor(n) ~= ceil(n) doesn't help you distinguish if a number is positive, only if it's an integer. For example floor(-1) = ceil(-1) = 1.
Additionally, you're over using "elseif" (for example,
elseif isequal(size(A), [2 2])==1 & floor(n)=ceil(n)
will work exactly like an "else" statement (assuming you fix the = by making it an ==) because those are the two conditions you've already filtered out, so the rest of the code will never be evaluated.
And you really don't want to be bringing the SVD into this at all...
Blake
on 28 Sep 2015
WAT
on 28 Sep 2015
I wouldn't assume you're allowed to use the rule that det(A^n) = det(A)^n. I'd assume you're supposed to calculate A^n then find the determinate of that new matrix.
James Tursa
on 28 Sep 2015
0 votes
To calculate the determinant of a 2x2 matrix, see this link a little over halfway down the first page:
To get the determinant of a matrix power, det(A^n), also note from the above link that the determinant of a matrix product is the product of the individual determinants. I.e. det(A*A) = det(A)*det(A). So you can extend this to powers and figure out the formula for det(A^n).
Using the above hints should help you to write the code.
Categories
Find more on Linear Algebra in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!