Find s, such that det(A+s*D) = d.
Show older comments
Given a non-sigular matrix A, an arbitrary matrix D, and a real or complex number d, I want to see any short-cut to find the numerical number s, such that M = A+s*D, and det(M) = d. Specially, the matrix M is singular if d = 0.
9 Comments
John D'Errico
on 28 Oct 2014
Edited: John D'Errico
on 28 Oct 2014
Use of the determinant is a TERRIBLE way to solve any problem in general. While it is mathematically valid, it ignores the fact that computation using floating point numbers in a finite precision is not mathematics.
Anyway, there is no reason to presume that s is unique for any given value of d. It need not be so for general matrices A and D.
And if you insist on solving the problem as you have posed it, I'm not sure why it is you expect some magical solution to exist that does not involve a rootfinder.
Feng Cheng Chang
on 30 Oct 2014
Generally you avoid computing determinants (using the recursive formula) whenever possible because of the large string of multiplications - which is often inefficient. For random determinants, you may not see so much error, but even a slight bias in your errors will lead to garbage if the matrix is large enough.
Feng Cheng Chang
on 30 Oct 2014
John D'Errico
on 30 Oct 2014
Edited: John D'Errico
on 30 Oct 2014
1. s is NOT unique for any general d, INCLUDING zero. It MAY be so. And the matrix you chose may have it so. However, I picked a different one for a test case, and found that the plot of det(A+s*D) was not monotone, in fact, it crossed the axes at 3 points. So there were 3 distinct solutions for that case.
Of course, feel free not to believe me. But then I wonder what inference I should make of this plot?

It seems to cross zero for three distinct values of s. But then, what do I know?
The matrices I chose in that example were random 5x5 matrices. You said this applies for any general matrix, so I picked that order. Using symbolic tools (reasonable here since the matrices were only 5x5)...
sympoly s
det(A+s*D)
ans =
-5.80856344609985 - 53.5024923077258*s + 53.130597064771*s^2 + 72.7248763204719*s^3 + 0.67894325278629*s^4 - 14.2544491127619*s^5
roots(ans)
ans =
2.4670662498904 + 0i
-1.48313778219639 + 0.595028644066688i
-1.48313778219639 - 0.595028644066688i
0.646831879916377 + 0i
-0.0999922959160047 + 0i
I guess it LOOKS like there are three real roots, but again, I may be wrong. (By the way, this is a better way to solve the problem than to use a general zero finder, as long as the matrices are small.)
As far as det being a poor thing to use, I did NOT say that in regards to mathematics. What I did say was that computer programming is NOT mathematics! Yes, it is often related, and it looks like mathematics. But the intrusion of floating point arithmetic makes many things that are valid to do in mathematics no longer a good idea. Use of the determinant is one of them. A couple of reasons off the top of my head are:
1. Determinants are computationally a nasty thing to do, at least if you use symbolic tools, especially if you use a recursive algorithm as many are taught in school. MATLAB uses an LU factorization for computation of a numerical determinant, so it is more stable as well as faster than the other methods.
2. Determinants are poorly behaved in terms of scaling, since it is frightfully easy to make a matrix determinant as small or as large as you want, merely by scaling your matrix. Remember that for an nxn matrix,
det(k*A) = det(A)*k^n
So it is terribly easy to have a matrix determinant that is wildly less than eps, yet the matrix is strictly non-singular.
Feng Cheng Chang
on 30 Oct 2014
John D'Errico
on 30 Oct 2014
Edited: John D'Errico
on 30 Oct 2014
I just showed a simple example, generated from random matrices that contradicted your belief.
This has nothing to do with belief. A single contradiction is sufficient to prove your belief is worth nothing. That some specific matrix has a unique solution is irrelevant. As I have shown, this can be solved as a polynomial roots problem, but that polynomial has no reason to be always monotonic.
Feng Cheng Chang
on 31 Oct 2014
Accepted Answer
More Answers (1)
Roger Stafford
on 30 Oct 2014
0 votes
If d is real and only real roots are being sought for s, you can simply write a function that accepts a scalar value s and computes det(A+s*D)-d, and then call on matlab's 'fzero' to adjust s to seek a zero value.
If d is complex or you are also seeking complex roots, you can instead call on 'fsolve', calling on your function with the separate real and imaginary parts of s and giving the separate real and imaginary parts of det(A+s*D)-d as a result.
Note that in general there will be n solutions to your equation where your matrices are n-by-n in size, since your equation is actually an nth-degree polynomial equation in s. However, it does not look easy to compute the coefficients of such a polynomial, so it would be difficult to use the 'roots' function.
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!