Gaspi

5 Reputation

3 Badges

14 years, 175 days

MaplePrimes Activity


These are replies submitted by Gaspi

Sorry, the complet question is this:

 

Given the matrix
  A = RTABLE (145776372, MATRIX ([[a, 2], [a, b])], Matrix) to calculate values for b which satisfies the equation
   A ^ 2 +3 * Delta * A + I = 0; being  Delta, the determinant of A.

 

Your code is corret, but delta is not good, because, delta is determinant [A]. I change your code for this:

 

 solve(convert(A^2 - 3*A - Determinant(A)*IdentityMatrix(2), set),{a,b});


And solution is:                    {a = 2, b = 1}, {a = 1, b = 2}

Is correct????


Sorry, the complet question is this:

 

Given the matrix
  A = RTABLE (145776372, MATRIX ([[a, 2], [a, b])], Matrix) to calculate values for b which satisfies the equation
   A ^ 2 +3 * Delta * A + I = 0; being  Delta, the determinant of A.

 

Your code is corret, but delta is not good, because, delta is determinant [A]. I change your code for this:

 

 solve(convert(A^2 - 3*A - Determinant(A)*IdentityMatrix(2), set),{a,b});


And solution is:                    {a = 2, b = 1}, {a = 1, b = 2}

Is correct????


Page 1 of 1