Differences between revisions 2 and 3
Revision 2 as of 2010-12-17 06:39:15
Size: 488
Editor: sprint_first
Comment:
Revision 3 as of 2010-12-17 06:40:30
Size: 542
Editor: sprint_first
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
/* code_beginsA=matrix([[2,6],[3,9]]) B=matrix([[1,2],[3,4]]) C=matrix([[-5,5],[5,3]]) A+B==B+A */ /* code_begins */

/*
A=matrix([[2,6],[3,9]]) */

/*
B=matrix([[1,2],[3,4]]) */

/*
C=matrix([[-5,5],[5,3]]) */

/*
A+B==B+A */

/* True */
  • Book

    Getting started with MATLAB

    Author

    Rudra Pratap

    Edition

(A+B)+C==A+(B+C)

True

k=5

k*(A+B)==k*A+k*B

True

A*(B+C)==A*B+A*C

True

A*B==B*A

False

  • Solution by:

    • <Arun Samayam>, <Student>, <UNCC>

    • <Bala Subrahmanyam. Varanasi>, <Student>, <Vishnu Institute of Technology>

Pratap-2.6-2 (last edited 2010-12-17 06:41:41 by sprint_first)