OPERATIONS RESEARCH >INTERNATIONAL EDITI
OPERATIONS RESEARCH >INTERNATIONAL EDITI
4th Edition
ISBN: 9780534423629
Author: WINSTON
Publisher: CENGAGE L
Expert Solution & Answer
Book Icon
Chapter 2.1, Problem 1P

Explanation of Solution

a.

Finding -A:

Consider the given matrices,

A=[1   2   34   5   67   8   9] and B=[1    2

Explanation of Solution

b.

Finding 3A:

Consider the given matrices,

A=[1   2   34   5   67   8   9] and B=[1    20   -11    2]

In order to find matrix 3A, multiply the given matrix A by scalar 3.

Therefore, the matrix obtained is as follows:

3A=3×[1   2  x

Explanation of Solution

c.

Finding A+2B:

Consider the given matrices,

A=[1   2   34   5   67   8   9] and B=[1    20   -11    2]

In order to find matrix 2B, multiply the given matrix B by scalar 2

Explanation of Solution

d.

Finding Transpose of matrix, A:

Consider the given matrices,

A=[1   2   34   5   67   8   9] and B=[1    20   -11  x

Explanation of Solution

e.

Finding Transpose of matrix, B:

Consider the given matrices,

A=[1   2   34   5   67   8   9] and B=[1    20   -1

Explanation of Solution

f.

Finding AB:

Consider the given matrices,

A=[1   2   34   5   67   8   9] and B=[1    20   -11    2]

Here, the number of columns in A are equal to the number of rows in B, therefore, the multiplication AB exists. Thus, the matrix AB will be of the order 3x2.

Now, suppose C=AB.

Therefore,

C=AB=[1   4   72   5   83   6   9] [1    20   -11    2]  

C11=[1   2   3] [101]     =1(1)+2(0)+3(1)     =1+0+3     =4  

C12=[1   2   3] [ 2-1 2]     =1(2)+2(-1)+3(2)     =2+(-2)+6     =6

C2

Explanation of Solution

g.

Finding BA:

Consider the given matrices,

A=[1   2   34   5   67   8   9] a

Blurred answer
Students have asked these similar questions
Send me the lexer and parser
Here is my code please draw a transition diagram and nfa on paper public class Lexer { private static final char EOF = 0; private static final int BUFFER_SIZE = 10; private Parser yyparser; // parent parser object private java.io.Reader reader; // input stream public int lineno; // line number public int column; // column // Double buffering implementation private char[] buffer1; private char[] buffer2; private boolean usingBuffer1; private int currentPos; private int bufferLength; private boolean endReached; // Keywords private static final String[] keywords = { "int", "print", "if", "else", "while", "void" }; public Lexer(java.io.Reader reader, Parser yyparser) throws Exception { this.reader = reader; this.yyparser = yyparser; this.lineno = 1; this.column = 0; // Initialize double buffering buffer1 = new char[BUFFER_SIZE]; buffer2 = new char[BUFFER_SIZE]; usingBuffer1 = true; currentPos = 0; bufferLength = 0; endReached = false; // Initial buffer fill fillBuffer(); } private…
If integer x is divisible by 3, can you prove that ceil(x/2) + floor(x/6) = floor(x/2) + ceil(x/6)
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Text book image
Systems Architecture
Computer Science
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Cengage Learning
Text book image
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:9780357392676
Author:FREUND, Steven
Publisher:CENGAGE L
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr