Thursday, May 14, 2026
HomeLanguagesNumPy | Vector Multiplication

NumPy | Vector Multiplication

Vector multiplication is of three types:

  • Scalar Product
  • Dot Product
  • Cross Product
  • Scalar Multiplication:
    Scalar multiplication can be represented by multiplying a scalar quantity by all the elements in the vector matrix.

    Code: Python code explaining Scalar Multiplication




           
    # importing libraries  
    import numpy as np
    import matplotlib.pyplot as plt
    import math
      
    v = np.array([4, 1])
    w = 5 * v
    print("w = ", w)
      
    # Plot w
    origin =[0], [0]
    plt.grid()
    plt.ticklabel_format(style ='sci', axis ='both'
                         scilimits =(0, 0))
    plt.quiver(*origin, *w, scale = 10)
    plt.show()

    
    

    Output :

w =  [20  5]

Dot Product multiplication:

Code: Python code to explain Dot Product Multiplication




import numpy as np
import math
  
v = np.array([2, 1])
s = np.array([3, -2])
d = np.dot(v, s)
print(d)


Here, dot product can also be received using the ‘@’ operator.

d = v@s

Output :

4

Cross Product:

Code: Python code explaining Cross Product




import numpy as np
import math
  
v = np.array([4, 9, 12])
s = np.array([21, 32, 44])
r = np.cross(v, s)
print(r)


Output:

[ 12  76 -61]
RELATED ARTICLES

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS