Numpy Exercise 4

Imports


In [34]:
import numpy as np
%matplotlib inline
import matplotlib.pyplot as plt
import seaborn as sns

Complete graph Laplacian

In discrete mathematics a Graph is a set of vertices or nodes that are connected to each other by edges or lines. If those edges don't have directionality, the graph is said to be undirected. Graphs are used to model social and communications networks (Twitter, Facebook, Internet) as well as natural systems such as molecules.

A Complete Graph, $K_n$ on $n$ nodes has an edge that connects each node to every other node.

Here is $K_5$:


In [35]:
import networkx as nx
K_5=nx.complete_graph(5)
nx.draw(K_5)


The Laplacian Matrix is a matrix that is extremely important in graph theory and numerical analysis. It is defined as $L=D-A$. Where $D$ is the degree matrix and $A$ is the adjecency matrix. For the purpose of this problem you don't need to understand the details of these matrices, although their definitions are relatively simple.

The degree matrix for $K_n$ is an $n \times n$ diagonal matrix with the value $n-1$ along the diagonal and zeros everywhere else. Write a function to compute the degree matrix for $K_n$ using NumPy.


In [48]:
def complete_deg(n):
    """Return the integer valued degree matrix D for the complete graph K_n."""
    a=np.zeros((n,n))          
    np.fill_diagonal(a,(n-1))   # found this line on http://docs.scipy.org/doc/numpy/reference/generated/numpy.fill_diagonal.html
    
    return a
print(complete_deg(3))


[[ 2.  0.  0.]
 [ 0.  2.  0.]
 [ 0.  0.  2.]]

In [ ]:


In [49]:
D = complete_deg(5)
assert D.shape==(5,5)
assert D.dtype==np.dtype(int)
assert np.all(D.diagonal()==4*np.ones(5))
assert np.all(D-np.diag(D.diagonal())==np.zeros((5,5),dtype=int))


---------------------------------------------------------------------------
AssertionError                            Traceback (most recent call last)
<ipython-input-49-7c6d18e5f27d> in <module>()
      1 D = complete_deg(5)
      2 assert D.shape==(5,5)
----> 3 assert D.dtype==np.dtype(int)
      4 assert np.all(D.diagonal()==4*np.ones(5))
      5 assert np.all(D-np.diag(D.diagonal())==np.zeros((5,5),dtype=int))

AssertionError: 

The adjacency matrix for $K_n$ is an $n \times n$ matrix with zeros along the diagonal and ones everywhere else. Write a function to compute the adjacency matrix for $K_n$ using NumPy.


In [50]:
def complete_adj(n):
    """Return the integer valued adjacency matrix A for the complete graph K_n."""
    a=np.ones((n,n),int)       
    np.fill_diagonal(a,(0))
    return a
print(complete_adj(4))


[[0 1 1 1]
 [1 0 1 1]
 [1 1 0 1]
 [1 1 1 0]]

In [51]:
A = complete_adj(5)
assert A.shape==(5,5)
assert A.dtype==np.dtype(int)
assert np.all(A+np.eye(5,dtype=int)==np.ones((5,5),dtype=int))

Use NumPy to explore the eigenvalues or spectrum of the Laplacian L of $K_n$. What patterns do you notice as $n$ changes? Create a conjecture about the general Laplace spectrum of $K_n$.


In [52]:
def L(n):
    a=np.linalg.eigvals(complete_deg(n)-complete_adj(n))
    return a
print(L(10))


[ 10.   0.  10.  10.  10.  10.  10.  10.  10.  10.]

number of elements in the array increases as n increases. 2nd element is always 0.


In [ ]:


In [ ]:


In [ ]:


In [ ]:


In [ ]: