Online Courses
Free Tutorials  Go to Your University  Placement Preparation 
Artificial Intelligence(AI) & Machine Learning(ML) Training in Jaipur
Online Training - Youtube Live Class Link
0 like 0 dislike
102 views
in Artificial Intelligence(AI) & Machine Learning by (750 points)
A data scientist must know some math to understand how algorithms work. Linear Algebra is often ignored by data science students, due to complexity of mathematics, but in reality, it is a must-learn topic. Linear Algebra is a vast subject in itself. We don't have to deep dive in it but we should understand basic math in order to be a good data scientist.

Goeduhub's Online Courses @Udemy

For Indian Students- INR 570/- || For International Students- $12.99/-

S.No.

Course Name

Apply Coupon

1.

Tensorflow 2 & Keras:Deep Learning & Artificial Intelligence

Apply Coupon

2.

Computer Vision with OpenCV | Deep Learning CNN Projects

Apply Coupon

3.

Complete Machine Learning & Data Science with Python Apply Coupon

4.

Natural Language Processing-NLP with Deep Learning in Python Apply Coupon

5.

Computer Vision OpenCV Python | YOLO| Deep Learning in Colab Apply Coupon

6.

Complete Python Programming from scratch with Projects Apply Coupon

1 Answer

0 like 0 dislike
by (750 points)
edited by
 
Best answer

Linear Algebra for Data Science


Linear algebra is a branch of mathematics which involves study of lines, planes, vectors, matrices, equations etc. It has wide role of applications in data science field, a glimpse of which we will see here.

Why should you learn Linear Algebra ?


We can easily visualize 2D and 3D. But what about 4D, 5D or 10D. Normal human eyes can't visualize more than three dimensions. But in reality, sometimes data scientists need to work with 100 of dimensions or features. Here, Linear algebra comes into play. Even if we can't visualize such huge dimensions, but we can still represent them in form of matrix or vectors. For example, we can find distance between three points using srqt((a)2+(b)2+(c)2). Like this, we can represent n points. Sometimes, we also decrease or increase dimensions for better visualization and analysis. 


Vectors

Linear algebra deals with vector spaces. A vector space is a set of objects called vectors. We can add or multiply vectors. A vector is a list of number. It can be thought of as a point in a space, which is numerically represented in form of a list. 

Row Vector - Vector having 1 row and n columns. It's dimension will be 1*n

Column Vector - Vector having n rows and 1 columns. It's dimension will be n*1

Vector Addition - Suppose you have two vector A and B.

A=[1,2,3] B=[3,2,1]

Then, C=A+B = [1+3,2+2,3+1]

Vector Multiplication - We have multiply vectors using dot and cross products. Cross products are not widely used in machine learning. We will only see dot product here.

vector

Projection and unit Vector- 

vector projection



Plane

Two dimensional axis (x,y) is represented by a line. 3D axis (x,y,z) is represented by a plane. Similarly, n-dimensions are represented by hyperplanes. 

y=mx+c is a equation of line, where c is the y-intercept. m is the slope.

Equation of a plane in n-dimension is wTx+w0=0 

Hence, equation of plane passing through origin will be wTx=0.

We are using w-transpose, because by-default it is represented as column-vector. We convert into row for multiplication.

A normal to the plane is represented by a vector perpendicular to the plane.



Matrix

A matrix is an array represented in the form of rows and columns. We often deal with matrix while performing or applying algorithms in Machine learning. Operations like addition, subtraction, multiplication, transpose etc. can be performed in matrices. 

Sometimes, we will get similarity matrices of huge data. Then, normal human visualization is impossible. Then, linear algebra comes to rescue.

We also have eigen values and eigen vectors of matrices whose application lies in principal component analysis.

import numpy

x = numpy.array([[1, 2], [3, 4]])

y = numpy.array([[5, 6], [7, 8]])

#  Addition of two matrices

print (numpy.add(x,y))

# Subtraction of two matrices

print (numpy.subtract(x,y))

# Multiplication of two matrices

print (numpy.multiply(x,y))

# The product of two matrices 

print (numpy.dot(x,y))

# Transpose of matrix

print (x.T)

OUTPUT

Addition of two matrices: 

[[ 6  8]

 [10 12]]

Subtraction of two matrices : 

[[-4 -4]

 [-4 -4]]

[[0.2        0.33333333]

 [0.42857143 0.5       ]]

Multiplication of two matrices: 

[[ 5 12]

 [21 32]]

The dot product of two matrices : 

[[19 22]

 [43 50]]

Matrix transposition : 

[[1 3]

 [2 4]]

Our Mentors(For AI-ML)


Sharda Godara Chaudhary

Mrs. Sharda Godara Chaudhary

An alumna of MNIT-Jaipur and ACCENTURE, Pune

NISHA (IIT BHU)

Ms. Nisha

An alumna of IIT-BHU

Related questions

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy || Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 
...