I have a 2x2$2 \times 2$ matrix "A" which$A$, where each element is a 12th order polynomial in a parameter "a"$a$. I
I need to raise this matrix "A"$A$ to the -t/T$-t/T$ power, where T$T$ is a known scalar (for this instance, it can be assumed T=1$T=1$) and t$t$ is a variable.
I have tried simply
MatrixPower[ AMatrixPower[A, -t/T] but the program ran for over 40 minutes without finishing. This seems unusually long.
Is there a more efficient way of performing this calculation?
EDIT: Here is my matrix in input form.
A = { {1.60938*10^-24 a^12 - 8.90757*10^-22 a^11 + 4.1103*10^-19 a^10 - 1.56167*10^-16 a^9 + 4.77859*10^-14 a^8 - 1.1468*10^-11 a^7 + 2.08694*10^-9 a^6 - 2.7542*10^-7 a^5 + 0.0000247781 a^4 - 0.00138637 a^3 + 0.0414932 a^2 - 0.493382 a + 0.898765, 6.40651*10^-26 a^12 - 3.88845*10^-23 a^11 + 1.96554*10^-20 a^10 - 8.25818*10^-18 a^9 + 2.82714*10^-15 a^8 - 7.70067*10^-13 a^7 + 1.62035*10^-10 a^6 - 2.53518*10^-8 a^5 + 2.80165*10^-6 a^4 - 0.000203325 a^3 + 0.00867045 a^2 - 0.179515 a + 1.19691}, {-6.40651*10^-26 a^13 + 3.86315*10^-23 a^12 - 1.95024*10^-20 a^11 + 8.18108*10^-18 a^10 - 2.79488*10^-15 a^9 + 7.5908*10^-13 a^8 - 1.59064*10^-10 a^7 + 2.47333*10^-8 a^6 - 2.70645*10^-6 a^5 + 0.000193079 a^4 - 0.00796119 a^3 + 0.152113 a^2 - 0.765055 a - 0.160599, 1.60938*10^-24 a^12 - 8.90756*10^-22 a^11 + 4.1103*10^-19 a^10 - 1.56167*10^-16 a^9 + 4.77859*10^-14 a^8 - 1.1468*10^-11 a^7 + 2.08694*10^-9 a^6 - 2.7542*10^-7 a^5 + 0.0000247781 a^4 - 0.00138637 a^3 + 0.0414932 a^2 - 0.493382 a + 0.898765} };