You are on page 1of 33

Krash (Sample)

Manual for Krash


Why Krash?
Towards the end of preparation, a student has lost the time to revise all the chapters from
his / her class notes / standard text books. This is the reason why K-Notes is specifically
intended for Quick Revision and should not be considered as comprehensive study material.
Its very overwhelming for a student to even think about finishing 300-400 questions per
subject when the clock is ticking at the last moment. This is the reason why Kuestion serves
the purpose of being the bare minimum set of questions to be solved from each chapter
during revision.
What is Krash?
Krash is a combination of K-Notes and Kuestion which effectively becomes a great tool for
revision. A 50 page or less notebook for each subject which contains all concepts covered in
GATE Curriculum in a concise manner to aid a student in final stages of his/her preparation.
A set of 100 questions or less for each subject covering almost every type which has been
previously asked in GATE. Along with the Solved examples to refer from, a student can try
similar unsolved questions to improve his/her problem solving skills.
When do I start using Krash?
It is highly recommended to use Krash in the last 2-3 months before GATE Exam.
How do I use Krash?
Once you finish the entire K-Notes for a particular subject, you should practice the respective
Subject Test / Mixed Question Bag containing questions from all the Chapters to make best
use of it. Kuestion should be used as a tool to improve your speed and accuracy subjectwise. It should be treated as a supplement to our K-Notes and should be attempted once
you are comfortable with the concepts and basic problem solving ability of the subject. You
should refer K-Notes before solving any Type problems from Kuestion.

Kreatryx. All Rights Reserved. Reproduction or re-transmission of this material, in whole or in part,
in any form, or by means, electronic, mechanical, photocopying, recording, or otherwise, without
the prior written consent of Kreatryx, is a violation of copyright law. Any sale/resale of this material
is punishable under law. Subject to Ghaziabad Jurisdiction only.
Kreatryx. All Rights Reserved.

www.kreatryx.com

Krash (Sample)

Krash - Sample
Engineering Maths
(Linear Algebra &
Differential Equation)

Kreatryx. All Rights Reserved.

www.kreatryx.com

Krash (Sample)

Kreatryx. All Rights Reserved.

www.kreatryx.com

Krash (Sample)

LINEAR ALGEBRA
MATRICES
A matrix is a rectangular array of numbers (or functions) enclosed in brackets. These
numbers (or function) are called entries of elements of the matrix.
2 0.4
Example:
5 -32

8
0

order = 2 x 3, 2 = number of rows, 3 = number of columns

Special Type of Matrices


1. Square Matrix
A m x n matrix is called as a square matrix if m = n i.e. number of rows = number of columns
The elements aij when i = j

a11a22 .........

are called diagonal elements

1 2
Example:

4 5

2. Diagonal Matrix
A square matrix in which all non-diagonal elements are zero and diagonal elements may or
may not be zero.
1 0
Example:

0 5

Properties
a. diag [x, y, z] + diag [p, q, r] = diag [x + p, y + q, z + r]
b. diag [x, y, z] diag [p, q, r] = diag [xp, yq, zr]
1

c.

diag x, y, z

d.

diag x, y, z = diag [x, y, z]


n
diag x, y, z diag xn , yn , zn

e.

diag 1 , 1 , 1
x
y
z

f. Eigen value of diag [x, y, z] = x, y & z


g. Determinant of diag [x, y, z] = xyz
3. Scalar Matrix
A diagonal matrix in which all diagonal elements are equal.

Kreatryx. All Rights Reserved.

www.kreatryx.com

Krash (Sample)

4. Identity Matrix
A diagonal matrix whose all diagonal elements are 1. Denoted by I
Properties:
a. AI = IA = A
n
b. I I
1
c. I I
d. det(I) = 1

5. Null matrix
An m x n matrix whose all elements are zero. Denoted by O.
Properties:
a. A + O = O + A = A
b. A + (- A) = O
6. Upper Triangular Matrix
A square matrix whose lower off diagonal elements are zero.
3 4 5
Example: 0 6 7
0 0 9
7.

Lower Triangular Matrix

A square matrix whose upper off diagonal elements are zero.


3 0 0
Example: 4 6 0
5 7 9

8.

Idempotent Matrix

A matrix is called Idempotent if A2 A


1 0
Example:

0 1
9.

Involutary Matrix

A matrix is called Involutary if A2 I .

Kreatryx. All Rights Reserved.

www.kreatryx.com

Krash (Sample)

Matrix Equality
Two matrices

Amn

m=p; n=q

and Bp q are equal if

i.e., both have same size

aij = bij for all values of i & j.


Addition of Matrices
For addition to be performed, the size of both matrices should be same.
If [C] = [A] + [B]
Then cij aij bij
i.e., elements in same position in the two matrices are added.
Subtraction of Matrices
[C] = [A] [B] = [A] + [B]
Difference is obtained by subtraction of all elements of B from elements of A.
Hence here also, same size matrices should be there.
Scalar Multiplication
The product of any m n matrix A a jk and any scalar c, written as cA, is the m n matrix

cA = ca jk obtained by multiplying each entry in A by c.

Multiplication of two matrices


Let Am n and Bp q be two matrices and C = AB, then for multiplication, [n = p] should
hold. Then,
n

cik aij b jk
j1

Properties:
If AB exists then BA does not necessarily exists.
Example: A 3 4 , B4 5 , then AB exits but BA does not exists as 5 3

So, matrix multiplication is not commutative.

Matrix multiplication is not associative.


A(BC) (AB)C .

Matrix Multiplication is distributive with respect to matrix addition


A(B + C) = AB +AC

Kreatryx. All Rights Reserved.

www.kreatryx.com

Krash (Sample)

If AB = AC B = C (if A is non-singular)
BA = CA B = C (if A is non-singular)

Transpose of a matrix
If we interchange the rows by columns of a matrix and vice versa we obtain transpose of a
matrix.
1 3
eg., A = 2 4
6 5

1 2 6
; AT

3 4 5

Conjugate of a matrix
The matrix obtained by replacing each element of matrix by its complex conjugate.
Properties
a.

A A

b.

A B A B

c.
d.

KA K A
AB AB

Transposed conjugate of a matrix


The transpose of conjugate of a matrix is called transposed conjugate. It is represented by

A .
a.

b.

A B A B

c.

KA KA

d.

AB B A

Trace of matrix
Trace of a matrix is sum of all diagonal elements of the matrix.
Classification of Real Matrix
T

a. Symmetric Matrix : A A
T

b. Skew symmetric matrix : A A


c. Orthogonal Matrix :

AT A1 ;

Kreatryx. All Rights Reserved.

AA T =I

www.kreatryx.com

Krash (Sample)

Note:
a. If A & B are symmetric, then (A + B) & (A B) are also symmetric
b. For any matrix AAT is always symmetric.

A + AT
c. For any matrix,

is symmetric &

A AT

is skew symmetric.
2

d. For orthogonal matrices, A 1


Classification of complex Matrices

a. Hermitian matrix : A A

b. Skew Hermitian matrix : A A

c. Unitary Matrix : A A 1 ; AA 1

Determinants
Determinants are only defined for square matrices.
For a 2 2 matrix

a
a
11 12 = a11a22 a12a21
a21 a22
Minors & co-factor

a11
If a21
a31

a12
a22
a32

a13
a23
a33

Minor of element a21 : M21

a12
a32

a13
a33
i j

Co-factor of an element aij 1

Mij

To design cofactor matrix, we replace each element by its co-factor


Determinant
Suppose, we need to calculate a 3 3 determinant

j1

a1 jcof a1 j

j1

a2 jcof a2 j

a3jcof a3j

j1

We can calculate determinant along any row or column of the matrix.

Kreatryx. All Rights Reserved.

www.kreatryx.com

Krash (Sample)

Properties

Value of determinant is invariant under row & column interchange i.e., A T A

If any row or column is completely zero, then A 0

If two rows or columns are interchanged, then value of determinant is multiplied by -1.

If one row or column of a matrix is multiplied by k, then determinant also becomes k


times.

If A is a matrix of order n n , then

KA Kn A

Value of determinant is invariant under row or column transformation

AB A * B

An A

A 1

1
A

Adjoint of a Square Matrix


T
Adj(A) = cof A
Inverse of a matrix
Inverse of a matrix only exists for square matrices

A
1

Adj A
A

Properties
a. AA1 A1 A I
b.

AB1 B1 A1

c.

ABC 1 C1B1 A1

d.

AT

A 1

e. The inverse of a 2 2 matrix should be remembered

a b

c d

d b
1
ad bc c a

I. Divide by determinant.
II. Interchange diagonal element.
III. Take negative of off-diagonal element.
Kreatryx. All Rights Reserved.

www.kreatryx.com

Krash (Sample)

Rank of a Matrix
a. Rank is defined for all matrices, not necessarily a square matrix.
b. If A is a matrix of order m n,
then Rank (A) min (m, n)
c. A number r is said to be rank of matrix A, if and only if
There is at least one square sub-matrix of A of order r whose determinant is non-zero.
If there is a sub-matrix of order (r + 1), then determinant of such sub-matrix should be 0.
Linearly Independent and Dependent
Let X1 and X2 be the non-zero vectors
If X1=kX2 or X2=kX1 then X1,X2 are said to be Linearly Dependent vectors.
If X 1kX2 or X2 kX1 then X1,X2 are said to be Linearly Independent vectors.
Note:
Let X1,X2 . Xn be n vectors of matrix A
If rank(A)=no of vectors then vector X1,X2. Xn are Linearly Independent
If rank(A)<no of vectors then vector X1,X2. Xn are Linearly Dependent
System of Linear Equations
There are two type of linear equations

Homogenous equation

a11 x1 a12 x2 .......... a1n xn 0

a21 x1 a22 x2 .......... a2nxn 0


-----------------------------------------------------------------------

am1 x1 am2 x2 .......... amnxn 0


This is a system of m homogenous equations in n variables

a11
a
21
Let A

am1

a12
a22

am2

a13

a1n
x1
0

0
a2n
x

; x
; 0= -

-
xn
0
amn m n
n1
m1

This system can be represented as


AX = 0

Kreatryx. All Rights Reserved.

10

www.kreatryx.com

Krash (Sample)

Important Facts
Inconsistent system
Not possible for homogenous system as the trivial solution
T

x1 , x2 ....., xn 0,0,......,0 always exists.


Consistent unique solution
If rank of A = r and r = n |A| 0, so A is non-singular. Thus trivial solution exists.
Consistent infinite solution
If r < n, number of independent equation < (number of variables) so, value of (n r)
variables can be assumed to compute rest of r variables.
This solution set has the following additional properties:
1. If u and v are two vectors representing solutions to a homogeneous system, then the
vector sum u + v is also a solution to the system.
2. If u is a vector representing a solution to a homogeneous system, and r is any scalar,
then ru is also a solution to the system.
Non-Homogenous Equation

a11 x1 a12 x2 .......... a1n xn b1


a21 x1 a22 x2 .......... a2n xn b2
-------------------------------------------------------------------------

am1 x1 am2 x2 .......... amnxn bn


This is a system of m non-homogenous equation for n variables.

a11 a12

a21 a22
A


a
m1 am2

x1
b1
a1n



a2n
x2
b2

; X ; B= -

b
amn m n
xn
m m 1

a11
a
21
Augmented matrix = [A | B] =

am1
Kreatryx. All Rights Reserved.

a12
a22

an

am2

amn
11

b1
b2

bm
www.kreatryx.com

Krash (Sample)

Conditions

Inconsistency

If r(A) r(A | B), system is inconsistent

Consistent unique solution

If r(A) = r(A | B) = n, we have consistent unique solution.

Consistent Infinite solution

If r(A) = r (A | B) = r & r < n, we have infinite solution


Specifically, if p is any solution of the system Ax=B, then entire solution set can be described
as {p+v: v is any solution to Ax=O}.
The solution of system of equations can be obtained by using Gauss elimination Method.
(Not required for GATE)
Note:
Let Anxn and rank(A)=r, then the number of Linearly Independent solutions of Ax = 0 is nr.
Cramers Rule
Suppose we have the following system of equations,

a1x b1y c1z d1


a2 x b2 y c2 z d2
a3 x b3 y c3 z d3
We define the following matrices,

d1 b1 c1
1 d2 b2 c2
d3 b3 c3

a1 d1 c1
2 a2 d2 c2
a3 d3 c3

a1 b1 d1
3 a2 b2 d2
a3 b3 d3

a1 b1 c1
a2 b2 c2
a3 b3 c3

Then, the solution is given by,

This rule can only be applied in case of unique solution.

Kreatryx. All Rights Reserved.

12

www.kreatryx.com

Krash (Sample)

Eigen values & Eigen Vectors


If A is n n square matrix, then the equation
Ax = x is called Eigen value problem.
Where is called as Eigen value of A.
x is called as Eigen vector of A.

a12

a1n
a11
a
a22
a2n
21

Characteristic polynomial A I

am2
amn
am1
Characteristic equation A I 0
The roots of characteristic equation are called as characteristic roots or the Eigen values.
To find the Eigen vector, we need to solve

A I x 0

This is a system of homogenous linear equation.


We substitute each value of one by one & calculate Eigen vector corresponding to each
Eigen value.
Important Facts
a. If x is an eigenvector of A corresponding to , the KX is also an Eigenvector where K is a
constant.
b. If a n n matrix has n distinct Eigen values, we have n linearly independent Eigen
vectors.
c. Eigen Value of Hermitian/Symmetric matrix are real.
d. Eigen value of Skew - Hermitian / Skew Symmetric matrix are purely imaginary or zero.
e. Eigen Value of unitary or orthogonal matrix are such that | | = 1.
f. If 1 , 2 ......., n are Eigen value of A, k 1 ,k2 .......,kn are Eigen values of kA.
g. Eigen Value of A 1 are reciprocal of Eigen value of A.
h. If 1, 2 ...., n are Eigen values of A,

A
1

A
2

, .........,

A
n

are Eigen values of Adj(A).

i. Sum of Eigen values = Trace (A)


j. Product of Eigen values = |A|
k. In triangular or diagonal matrix, Eigen values are diagonal elements.

Kreatryx. All Rights Reserved.

13

www.kreatryx.com

Krash (Sample)

Cayley - Hamiltonian Theorem


Every matrix satisfies its own Characteristic equation.
e.g., If characteristic equation is

C1n C2n 1 ...... Cn 0


Then, C1An C2An 1 ...... CnI O
Where I is identity matrix
O is null matrix

DIFFERENTIAL EQUATION
The order of a deferential equation is the order of highest derivative appearing in it.
The degree of a differential equation is the degree of the highest derivative occurring in it,
after the differential equation is expressed in a form free from radicals & fractions.
For equations of first order & first degree
Variable Separation method
Collect all function of x & dx on one side.
Collect all function of y & dy on other side.
like f(x) dx = g(y) dy
Solution:
Example:

f x dx g y dy c
dz
1 x tanz 1
dx

dz
x tanz
dx
dz
xdx
tanz

cot z dz xdx
log sinz

x2
c
2

Kreatryx. All Rights Reserved.

14

www.kreatryx.com

Krash (Sample)

Linear Differential Equations


An equation is linear if it can be written as:

y' P x y r x

If r(x) = 0 ; equation is homogenous


else r(x) 0 ; equation is non-homogeneous
p x dx
y(x) = ce
is the solution for homogenous form

for non-homogenous form, h = P x dx

y x eh ehrdx c

Example: t

dx
x t
dt

Divide by t,

dx x
1
dt t

IF e1/tdt elogt t

Solution is x t 1 t dt

t2
c
2

Exact differential equation


An equation of the form
M(x, y) dx + N (x, y) dy = 0
For equation to be exact.
M N

; then only this method can be applied.


y
x
The solution can be given by any one of the following two equations,

Mdx terms of N not containing 'x' dy = c

(y constant)

Ndy terms of M not containing 'y' dx = c

(treat x as constant)

Else, some special terms can be rearranged as given below,

d log xy

xdy ydx
xy

y xdy ydx
d log
xy
x
Kreatryx. All Rights Reserved.

x
1 ydx xdy ydx xdy
d log

2
y
x
/
y
xy
y

x ydx xdy
d tan1 2
x y2
y

15

www.kreatryx.com

Krash (Sample)

y xdy ydx
d tan1 2
x y2
x

2 xdx ydy
d log x2 y 2

x2 y 2

ex yexdx exdy
d

y2
y

ey xey dy ey dx
d

x2
x

x2 2xydx x2dy
d

y2
y

y 2 2xydy y 2dx
d

x2
x

x2 2xy 2dx 2x2 ydy


d 2

y4
y

y 2 2x2 ydy 2xy 2dx


d 2

x4
x

Example: y cosy

1
dx x x siny 1 dy 0
2 x

ydx xdy cos ydx x sin ydy


d xy d x cos y

1
2 x

1
2 x

dx dy 0

dx dy 0

xy xcos y x y 0
Integrating factors
An equation of the form
P(x, y) dx + Q (x, y) dy = 0
This can be reduced to exact form by multiplying both sides by IF.
Rule I
If the given equation Pdx + Qdy = 0 (1) isnt an exact equation but it is a homogenous
equation and Px + Qy 0, then

1
(2) is an integrating factor of (1).
Px Qy

Rule II
In the given equation Pdx Qdy 0 (1) is not exact equation but it is in the form

f xy ydx g xy xdy 0 and Px Qy 0 . Then IF

Kreatryx. All Rights Reserved.

16

1
...............(2)
Px Qy

www.kreatryx.com

Krash (Sample)

Rule III
If

1 P Q
1 P Q

is a function of x, then R(x) =


. Then, Integrating Factor
Q y x
Q y x

IF = exp

R x dx

Rule IV

Q P
Q P

Otherwise, if 1 P
is a function of y then, S(y) = 1 P
. Then, Integrating
x y
x y
Factor, IF = exp

S y dy

Bernoullis equation
The equation

dy
Py Qyn
dx

Where P & Q are function of x


Divide both sides of the equation by yn & put y

1 n

dz
P 1 n z Q 1 n
dx

This is a linear equation & can be solved easily.


Clairauts equation

An equation of the form y = Px + f (P), is known as Clairauts equation where P = dy dx

The solution of this equation is y = cx + f (c) where c = constant


Linear Differential Equation of Higher Order
Constant coefficient differential equation

dn y
dn1 y

k
.............. kn y X
1
dxn
dxn1
Where X is a function of x only
a. If y1 , y 2 ,.........., yn are n independent solution, then

c1 y1 c2 y 2 .......... cn yn x is complete solution


where c1 ,c2 ,..........,cn are arbitrary constants.
b. The procedure of finding solution of nth order differential equation involves computing
complementary function (C. F) and particular Integral (P. I).
Kreatryx. All Rights Reserved.

17

www.kreatryx.com

Krash (Sample)

c. Complementary function is solution of

dn y
dn1 y

k
............. kn y 0
1
dxn
dxn1
d. Particular integral is particular solution of
dn y
dn1 y

k
............ kn y x
1
dxn
dxn1
e. y = CF + PI is complete solution
Finding complementary function
Method of differential operator
dy
d
Dy
Replace
by D
dx
dx
Similarly,
dn y
dn
n
D
Dn y
by

dxn
dxn

dn y
dn1 y

k
............ kn y 0 becomes
1
dxn
dxn1

Dn k1Dn1 ........... kn y 0

Let m1 ,m2 ,............,mn be roots of


Dn k1Dn1 ................ K n 0

.(i)

Case I: All roots are real & distinct

D m1 D m2 ............ D mn 0
m1x

y = c1e

m2x

c2e

is equivalent to (i)

........... cnemnx is solution of differential equation

Case II: If two roots are real & equal i.e., m1 m2 m


m3x

y = c1 c2 x emx c3e

.......... cnemnx

Case III: If two roots are complex conjugate


m1 j ; m2 j
y = ex c1 'cos x c2 'sinx .......... cnemnx
Finding particular integral
Suppose differential equation is
dn y
dn1 y

k
.......... kn y X
1
dxn
dxn1

Particular Integral,
Kreatryx. All Rights Reserved.

18

www.kreatryx.com

Krash (Sample)

PI = y1

W1 x
W x

Xdx y 2

W2 x
W x

Xdx .......... yn

Wn x
W x

Xdx

Where y1 , y 2 ,............y n are solutions of Homogenous from of differential equations.

y1
y1 '
W x

y1

y2
y2 '
n

y 2

y1
y1 '
Wi x

yn
yn '

y1

yn

y 2 yi1 0
y 2 ' yi1 ' 0

yn
yn '

y 2

yi1 1

yn

Wi x is obtained from W(x) by replacing ith column by all zeroes & last 1.

Example: D2 6D 9 y

e3x
D 3 y x2

e3x
x2

Finding Complimentary Function,

D 3,3
y c1 c2 x e3x c1e3x c2 xe3x
y1

y2

Wronskian is given by,

e3x
3e3x

W1

0 xe3x
xe3x
3x
3x
1 3xe e

W2

e3x
3e3x

xe3x
e6x
3x
3x
3xe e

0
1

e3x

Coefficients for Particular integral can be computed as,

e3x xe3x

dx logx
x2 e6x
1
e3x e3x
B 2 6x dx logx
x
x
e
yP Ay1 By 2
A

Euler-Cauchy Equation
An equation of the form
xn

n1
dn y
y
n1 d

k
x
.......... kn y 0 is called as Euler-Cauchy theorem
n
1
n

dx
dx 1

Kreatryx. All Rights Reserved.

19

www.kreatryx.com

Krash (Sample)

Substitute y = xm
The equation becomes

m m 1 ........ m n k1m(m 1)......... m n 1 ............. kn xm 0

The roots of equation are


Case I: All roots are real & distinct
m1

y c1 x

m2

c2 x

........... cnxmn

Case II: Two roots are real & equal


m1 m2 m
m3

y c1 c2 nx xm c3 x

mn

........ cnx

Case III: Two roots are complex conjugate of each other


m1 j ; m2 j
m
m
y = x A cos nx Bsin nx c3x 3 ........... cnx n

Kreatryx. All Rights Reserved.

20

www.kreatryx.com

Krash (Sample)

Type 1: Linear Algebra


For Concepts, please refer to Engineering Mathematics K-Notes, Linear Algebra
Problems:
01. If for a matrix, rank equals both the number of rows and number of columns, then the
matrix is called
(A) Non-singular
(C) transpose
2 1
02. The equation 1 1
y x2

(B) singular
(D) minor
1
1 0 represents a parabola passing through the points.
x

(A) (0, 1), (0, 2), (0, -1)


(C) (1, 1), (0, 0), (2, 2)

(B) (0, 0), (-1, 1), (1, 2)


(D) (1, 2), (2, 1), (0, 0)

a
1

03. If matrix X 2
and X2 X I 0 then the inverse of X is

a a 1 1 a

(A)

1 a 1
a2
a

a
1

(C) 2

a a 1 a 1

1
1a
(B) 2

a a 1 a
a2 a 1
a
(D)

1
1 a

1
04. Consider the matrices X 43 , Y43 and P23 . The order of P X T Y P T will be

(A) 2x2
(C) 4x3

(B) 3x3
(D) 3x4

1 1 1
05. The rank of the matrix 1 1 0 is
1 1 1

(A) 0
(C) 2
Kreatryx. All Rights Reserved.

(B) 1
(D) 3
21

www.kreatryx.com

Krash (Sample)

2 2 3
06. The matrix M 2 1 6 has given values -3, -3, 5. An eigen vector corresponding
1 2 0

to the eigen value 5 is 1 2 1 . One of the eigen vector of the matrix M3 is


T

(A)

(C) 1

8 1

(B)

(D)

1
1

2 1

1 1

07. The system of equations x + y + z = 6, x + 4y + 6z = 20, x + 4y + z has no solutions


for values of and given by
(A) 6, 20

(B) 6, 20

(C) 6, 20

(D) 6, 20

08. Let P be 2x2 real orthogonal matrix and x is a real vector x1

x x12 x22

12

x 2

with length

. Then which one of the following statement is correct?

(A)

px x where at least one vector satisfies px x

(B)

px x for all vectors x

(C)

px x where at least one vector satisfies px x

(D) No relationship can be established between x and px


09.The characteristics equation of a 3 x 3 matrix P is defined as
I P 3 2 2 1 0 . If I denotes identity matrix then the inverse of P will be
(A) P 2 P 2I
(C) P2 P I

(B) P 2 P I
(D) P2 P 2I

10. A set of linear equations is represented by the matrix equations Ax = b. The necessary
condition for the existence of a solution for the system is
(A)
(B)
(C)
(D)

A must be invertible
b must be linearly dependent on the columns of A
b must be linearly independent on the columns of A
None.

Kreatryx. All Rights Reserved.

22

www.kreatryx.com

Krash (Sample)

11. Consider a non-homogeneous system of linear equations represents mathematically an


over determined system. Such a system will be
(A)
(B)
(C)
(D)

Consistent having a unique solution.


Consistent having many solution.
Inconsistent having a unique solution.
Inconsistent having no solution.

12. The trace and determinant of a 2x2 matrix are shown to be -2 and -35 respectively. Its
eigen values are
(A) -30, -5
(C) -7, 5

Kreatryx. All Rights Reserved.

(B) -37, -1
(D) 17.5, -2

23

www.kreatryx.com

Krash (Sample)

Type 2: Differential Equation


For Concepts, please refer to Engineering Mathematics K-Notes, Differential Equations.
Problems:
01. For the differential equation f x, y
(A)

dy
g x, y 0 to be exact is
dx

f g

y x

(B)

(C) f = g

(D)

02. The differential equation

f g

x y
2 f
x2

2g
y 2

dy
py Q , is a linear equation of first order only if,
dx

(A) P is a constant but Q is a function of y


(B) P and Q are functions of y (or) constants
(C) P is function of y but Q is a constant
(D) P and Q are function of x (or) constants
03. Biotransformation on of an organic compound having concentration (x) can be modelled
using an ordinary differential equation

dx
kx 2 0 , where k is reaction rate constant. If
dt

x = a at t = 0 then solution of the equation is


(A) x a e

kx

(C) x a 1 ekt
04.

(B)

Transformation

1 1
kt
x a

(D) x = a + k t
to

linear

form

by

substituting

v= y1n

of

the

equation

dy
p t y q t yn , n > 0 will be
dt
dv
1 n pv 1 n q
dt
dv
1 n pv 1 n q
(C)
dt
(A)

Kreatryx. All Rights Reserved.

dv
1 n pv 1 n q
dt
dv
1 n pv 1 n q
(D)
dt
(B)

24

www.kreatryx.com

Krash (Sample)

d2 y

dy

4
3y 3e2x , the particular integral is
2
dx
dx
1 2x
1 2x
(A)
(B) e
e
5
15
05. For

2x
(C) 3e

(D) C1ex C2e3x

06. Solution of the differential equation 3y

dy
2x 0 represents a family of
dx

(A) ellipses
(C) parabolas

(B) circles
(D) hyperbolas

07. Which one of the following differential equation has a solution given by the function

y 5sin 3x
3

dy 5
cos 3x 0
(A)
dx 3
(C)

(B)

d2 y

9y 0
d2 x

dy 5
cos3x 0
dx 3

(D)

d2 y
dx2

9y 0

d3 y

dy
2
4
08. The order and degree of a differential equation
y 0
3
dx
dx

are

respectively
(A) 3 and 2
(C) 3 and 3

(B) 2 and 3
(D) 3 and 1

..

09. The maximum value of the solution y (t) of the differential equation y(t)+ y (t) = 0 with

initial conditions y 0 1 and y(0) = 1, for t 0 is


(A) 1

(B) 2

(C)

(D)

10. It is given that y 2y y 0 , y(0) = 0 & y(1) = 0. What is y(0.5) ?


(A) 0
(C) 0.82

Kreatryx. All Rights Reserved.

(B) 0.37
(D) 1.13

25

www.kreatryx.com

Krash (Sample)

11. A body originally at 60 cools down to 400 in 15 minutes when kept in air at a
temperature of 25c. What will be the temperature of the body at the end of 30 minutes?
(A) 35.2 C
(C) 28.7C
12. The solution
is given by

(B) 31.5C
(D) 15C

d2 y

dy
dy
0 in the range 0 x
; y 0 1,

17y

4
2
dx
dx
x
dx
4

(A) ex cos 4x sin4x


4

(C) e4x cos 4x

1
sin
4

Kreatryx. All Rights Reserved.

(B) ex cos 4x sin4x


4

(D) e4x cos 4x

26

sin4x
4

www.kreatryx.com

Krash (Sample)

Solutions
Type 1: Linear Algebra
01. Ans: (A)
Solution: Rank=no. of rows=no. of columns

A 0 As all rows & columns are linearly independent


A=Non-Singular matrix

02. Ans: (B)


2 1
Solution: I 1 1
y x2

1
1 0
x

By just looking at matrix I we can conclude that:

One solution of above matrix is (0,0) as row3s all elements are zero hence |I|=0

Second solution is (1,2) as R1=R3 Linearly dependent rows

Third solution is (-1,1) as R2=R3 Linearly dependent rows

03. Ans: (B)


Solution: X2 X I Multiplying by X1

X I X1I
Or
1 0
a
1 1a
1
X 1 I X
2
2

0 1 a a 1 1 a a a 1 a
04. Ans: (A)

Solution: X 43 , Y43 & P23

and P X T y

Matrix operation

Order

3 4

43

X Y

33

X Y
P X Y
P X Y P
1

T
T
1 T

P
PT PY 1 X T

33
23

22

Kreatryx. All Rights Reserved.

27

www.kreatryx.com

Krash (Sample)

05. Ans: (C)


Solution: R1
R1 R3 ,
Replace
0

1
We get A

1
0
1
1

B 2

A 0
Rank=2

06. Ans: (B)


Solution: Eigen values=-3, 3, 5
1

Eigen vector corresponding to 5 is 2
1

For M3 Eigen values -27, 27, 125


But Eigen vector will remains the same

07. Ans: (B)

1 1 1 6

Solution: A | B 1 4 6 20
1 4 u

For no solution

A A | B n

A n
A 0
1 4 24 1 6 1 4 4 0

4 24 6 0
3 18 6
But A | B 0

1 4u 80 1 20 u 6 4 4 0 => u 20

Kreatryx. All Rights Reserved.

28

www.kreatryx.com

Krash (Sample)

08. Ans: (B)

Solution: Orthogonal matrix, PT P1 .............. 1


Note: Orthogonal matrix presence the length of vector [Euclidean Norm]

X X1X2
X
XT 1
X 2

PX PX PX X TP TPX
2

From (1)
PX

X TP 1PX

X IX
T

X T X X2

09. Ans: (D)


Solution: Characteristic equation= 2 2 2 1 0 . Every matrix satisfies its characteristic
equation [Cayley Hamiltonian theorem]

P3 P2 2P I

Px Multiplying by P1 P2 P 2I P 1

10. Ans: (C)


Solution: This equation will be solvable even for non-square matrix A of B vector is linearly
independent of columns of A.
11. Ans: (D)
Solution: Over determined system will have no solution as number of equations are more
than number of unknowns.
12. Ans: (C)
Solution:

Eigen 2

1 2 2

&

&

Eigen 35

12 35

1 2 1 35
12 21 35 0
1 7 or 2 5

Kreatryx. All Rights Reserved.

29

www.kreatryx.com

Krash (Sample)

Type 2: Differential Equation


01. Ans: (B)

Solution: f x, y dy g x, y dx 0
N

For exact differential equation


f g
M N

x y
y x

02. Ans: (D)


Solution: For linear differential equation:-

dy
Py Q
dx

0
P & Q must be function of x Or constant k f x

03. Ans: (B)

dx
kx2 0 , x t 0 a
dt

Solution:

dx
kx 2 Variable separate type
dt
dx

k dt

1
kt c
x

At t=0

1
c
a
1 1
kt
x a
04. Ans: (A)

dy
Py q.y n [ Bernoullis equation].(i)
dt

Solution:
Let V y

1n

dv
n dy
1 n y
dt
dt

Kreatryx. All Rights Reserved.

30

www.kreatryx.com

Krash (Sample)

dy
yn dv

................... 2
dt 1 n dt
Equation (1) can be written as

y n

dy
1 n
Py q
dt

dv
Pv q
1 n dt
dv
1 n pv 1 n q
dt
05. Ans: (B)
Solution: Let

P.I

d
D, f D D2 4D 3 0
dx

3e2x 3e2x e2x

5
f 2 15

06. Ans: (A)


Solution: 3ydy 2xdx 0

[Variable separable]

On integration
3y 2
x2 K
2

[Ellipse, x2

y2
2
k
3

For circle, coefficient of x2 coefficient of y 2

07. Ans: (C)

Solution: y 5sin 3x ............. 1 On differentiating both sides


3

dy

5 3 cos 3x
dx
3

Again differentiating both

d2 y

5 33 sin 3x 9 5 sin 3x
2
3
3
dx

From (1)

d2 y
9y 0
dx2

Kreatryx. All Rights Reserved.

31

www.kreatryx.com

Krash (Sample)

08. Ans: (A)


3

Solution:

dy
d3 y
2
4
y
3
dx
dx

On squaring both sides


2
dy 3

d3 y
2
3 16
y
dx

dx

Order=3,

Degree=2

09. Ans: (D)


Solution: m2 1 0
m i

Solution
y C1 cos x C2 sin x

y 0 1 => C1 1 and y 0 1 => C2 1

y cos x sinx 2 sin x 450

y max 2 at

10. Ans: (A)


Solution: y 2y y 0

y 0 0 & y 1 0
m2 2m 1 0

m 1

m=-1 (Replacing Roots)

Solution

y e x C1 xC2

y 0 0 C1
y e x xC2
y 1 0 C2 0
Solution of difference equation
y0

y 0.5 0
Kreatryx. All Rights Reserved.

32

www.kreatryx.com

Krash (Sample)

11. Ans: (B)


Solution: By Newtons law of cooling (0=Temp)
Q 0 Secondary temperature

Q1 Initial temperature

d
k Q Q 0
dt

dQ

k Q Q dt
lnQ Q k t c Q Q
0

ekt .ekc

Q Pekt Q 0
At t 0 P Q1 Q0
P 600 250 350

Q 35ekt 25
k 15
After, 15 minutes 40 25 35e : K .0565

After, 30minutes
Q 35e0.56530 25 31.48 31.50 C

12. Ans: (A)


Solution: Let

d
my
dx

Then, m2 2m 17 0
m 1 4i

Solution,

y ex C1 cos 4x C2 sin4x

y 0 1 => 1 C1

y ex cos 4x C2 sin4x
On differentiating both sides

y ex cos 4x C2 sin4x ex 4sin4x 4C2 cos 4x

At y 0 : 0 4C2 1
4
C2 1

sin 4x
Solution= y e x cos 4x
4

Kreatryx. All Rights Reserved.

33

www.kreatryx.com

You might also like