Taking my last math class to secure the minor along with my BSME degree. We just covered this topic on Monday; excellent timing on these videos. Thank you Dr. Chasnov!
@blackasthesky3 жыл бұрын
I'm glad you are making these videos. Saved me more than once.
@brucelau53592 жыл бұрын
I really like the way you explain how MATLAB works and I really enjoy watching the video!!!! Great thanks
@niiwontumi804211 ай бұрын
why did u interchange the 2nd and 3rd row of the lower triangular matrix at min 7:02 , is there something I'm missing🤔🤔🤔
@AhmedAwaiz-ie3vw7 ай бұрын
As U matrix's R2 and R3 were interchanged
@bogdansofiea75633 жыл бұрын
Hi great explanation but after checking the calculations i think at min 3:23 instead of M2M1P12A you should have written just M1P12A
@bogdansofiea75633 жыл бұрын
and then the result of U = P23 *M1*P12*A
@ryanjackson0x3 жыл бұрын
How do you get the subscript 23 for P23, and how do you know it's its own inverse?
@steady_search2 жыл бұрын
Probably a more formal proof than this; but given that this identity was offered by the prof, here is an example. I did cheat and use python, but I thought it might be weirder to put a matrix in a youtube comment😅 >>> import numpy as np >>> A = [[0, 1, 0], [1, 0, 0], [0, 0, 1]] >>> A [[0, 1, 0], [1, 0, 0], [0, 0, 1]] >>> B =np.copy(A) >>> np.matmul(A,B) array([[1, 0, 0], [0, 1, 0], [0, 0, 1]])
@lanncerigs2623 жыл бұрын
Thank you! It helped me a lot!
@stavtsechansky7864 Жыл бұрын
is this basically Cholesky decomposition ?
@sammer13172 жыл бұрын
Yo is he writing in reverse
@Limbaugh_ Жыл бұрын
No
@christophergaspar6520 Жыл бұрын
it's a reversed video we did this at our school too and i got to the glass board and how it worked
@w-gabriel3 жыл бұрын
Those lectures are amazing.
@Youknowwho-q4p10 ай бұрын
Interesting but doesn’t sound like LU decomposition to me? Why there’s a inverse calculation in it
@athanasehafashimana25863 жыл бұрын
very nice
@ElhamGholamipour Жыл бұрын
I wonder how he calculated L .. any help?
@azzatdeutschr5333 Жыл бұрын
i think he just saved it without anderstanding the right way to do
@geniusmathematics91233 жыл бұрын
Thnx sir
@rajatsankhla89933 жыл бұрын
Saviour!
@beleggo45324 ай бұрын
Japper of Jappington
@sattikbiswas218710 ай бұрын
This is Mike from Breaking bad
@ismailsevimli6424 Жыл бұрын
Thanks Life saver :D
@pavelsavelev2560 Жыл бұрын
ur smart
@azzatdeutschr5333 Жыл бұрын
wrong explanation, very bad
@manethbalasooriya2222 жыл бұрын
It wouldnt have killed you to do L?
@steady_search2 жыл бұрын
Yeah that was a strange choice imo. I wonder if he's referencing a specific textbook's notation.