Need assistance with symbolic matrix multiplication and plotting with 2 variables
I have several 8x8 matrices that need to be multiplied together like so:
[U] = [A]*[B]*[C]...etc
with [U] being the overall matrix for the system
Within the [A],[B],[C],etc., matrices are various numerical values as well as two unkown variables. The ultimate goal here is to have the final [U] matrix display these 2 unknown variables symbolically. After this, I can find the determinant of the matrix and create a large polynomial that solves for the relationship for the 2 variables so that the polynomial = 0.
I am trying to multiply these matrices together symbolically using the ---> (symbolic command) but the problem is that the matrix is becoming too large and not displaying the result. I have attempted to do each section individually and then simplify the results (for example, [1] = [A]*[B], simplify, then [2] = [1]*[C], simplify, etc.) but even that is becoming too large.
Is there any way around this so that I can see the results?
Also, once I have the results, how do I go about plotting the relationship between the 2 variables? Say I have a polynomial to the 24th power - that would mean mean I have 12 roots so 12 different curves that display the relationship so that the 2 variables drive the polynomial equation to zero. How can I not only find these values over a range, but also plot them?
Thanks

