Skip to main content

Questions tagged [adjacency-matrices]

An adjacency matrix is a square (0,1)-matrix used to represent a graph. Its entries indicate whether pairs of vertices are adjacent or not.

Filter by
Sorted by
Tagged with
1 vote
0 answers
119 views

Are there any heuristics to compute the spectral norm of the adjacency matrix of this directed graph connected to prime numbers? Let $p$ be a prime and $n$ be a natural number. Define inductively for ...
mathoverflowUser's user avatar
1 vote
0 answers
163 views

I am looking for the standard terminology for a mathematical structure consisting of a directed graph where each edge "applies a function passing through it". Formal Definition Let $G=(V, E)$...
Anthony Couthures's user avatar
2 votes
2 answers
352 views

I am currently reading this paper and this related paper (can also be found here), which explore the connection between Jordan normal forms and adjacency graphs. Theorem 6 in the first paper reads ...
Shasa's user avatar
  • 79
0 votes
0 answers
136 views

We know that all adjacency matrices are square matrices. When our weighted directed graphs have loops or parallel edges, we obtain adjacency matrices that are, in general, asymmetric or non-Hermitian ...
Shasa's user avatar
  • 79
2 votes
1 answer
498 views

I'm currently working on a project that partially involves graphs. One of the problems I'm tackling is determining whether two given matrices represent the same connected undirected graph. So given ...
Michael's user avatar
  • 45
0 votes
1 answer
193 views

Let $G$ and $ H$ be two graphs on the same vertex set (i.e. $V(G)=V(H)$). Suppose that $K$ is the graph with adjacency matrix $A_G\times A_H$, where $A_G$ and $A_H$ are adjacency matrix of $G$ and $H$,...
khers's user avatar
  • 247
2 votes
0 answers
83 views

Given an irregular graph $G$ whose maximum degree is $d$, I am interested in producing a new graph $G'$ which is regular and has the spectrum of the adjacency spectrum of $G$ embedded in the spectrum ...
Chaithanya's user avatar
6 votes
1 answer
711 views

Let $G$ be a directed graph with no multiple edges or loops and let $P_i$ be its vertices. Let $A$ be the corresponding adjacency matrix of $G$, i.e. $a_{i,j}=1$ if and only if there is a directed ...
ABB's user avatar
  • 4,150
1 vote
0 answers
404 views

Let $A$ be an adjacency matrix of undirected graph $G$, where $G$ is a connected graph. The normalized adjacency matrix is defined as $\hat{A}=D^{-1/2}AD^{-1/2}$, where $D$ is degree matrix of graph $...
MikeDean's user avatar
6 votes
0 answers
333 views

Consider the spectrum of the adjacency matrix $A$ of the Cayley graph of the standard, 3x3x3 Rubik's cube generated with the usual quarter-turn and half-turn twists of each face (the Singmaster ...
Mark S's user avatar
  • 2,245
0 votes
0 answers
121 views

The following question is from Introduction to dynamical systems, written by Michael Brin and Garrett Stuclk. Given two non-negative integer square matrices $A, B$, we say $A, B$ are elementarily ...
Sanae Kochiya's user avatar
3 votes
1 answer
625 views

In a non weighted graph, the adjacency matrix ($A$) raised to the power $k$ will return the number of k-step paths between nodes $i$ and $j$ at the entry $a_{ij}$. Is there an equivalent for weighted ...
chrisLoweDev's user avatar
2 votes
0 answers
236 views

If $G$ is a graph, then the graph energy of $G$ denoted by $E(G)$ is defined as the sum of absolute values of eigenvalues of the adjacency matrix of $G$. It is known that $E(G)\geq E(G-v)$, where $ ...
gete's user avatar
  • 203
5 votes
0 answers
588 views

Let $G$ be a finite undirected graph. A closed walk in $G$ is a walk from any vertex of $G$ to itself. It is relatively straightforward to show that the total number of closed walks of length $k$ in $...
Sam Hopkins's user avatar
  • 26k
24 votes
6 answers
2k views

Let $G$ be a regular graph of valence $d$ with finitely many vertices, let $A_G$ be its adjacency matrix, and let $$P_G(X)=\det(X-A_G)\in\mathbb{Z}[X]$$ be the adjacency polynomial of $G$, i.e., the ...
Joe Silverman's user avatar
11 votes
1 answer
2k views

Let $A$ and $\widetilde A$ be the adjacency matrices of a graph $G$ and of its complement, respectively. Is there any relation between the eigenvalues of $A + \widetilde A$ and the eigenvalues of $A$ ...
GA316's user avatar
  • 1,329
4 votes
1 answer
493 views

Let $G$ be a digraph such that there is an unique directed walk of length $k$ between any two vertices. Equivalently, if $A$ is the adjacency matrix of $G$, then $A^k$ is the matrix with all entries $...
Antoine Labelle's user avatar
3 votes
1 answer
255 views

Let $A$ be the adjacency matrix of a graph. Then, as is well-known and trivial to show, $\mathrm{Tr} A^k$ equals the number of closed walks of length $k$. Is there a similar way to express (a) the ...
H A Helfgott's user avatar
1 vote
1 answer
1k views

If so, could you provide examples and specify the conditions under which this occurs? Thank you in advance
DanteAligante's user avatar
2 votes
1 answer
781 views

As noted in 1806.05647, given a symmetric matrix $A$, the leading eigenvector value problem (LEVP) $$Av = \lambda v,$$ where $A = A^T \in \mathbb{R}^{n \times n}$, $\lambda$ is the largest ...
user144910's user avatar
1 vote
1 answer
2k views

I'm currently running a simulation on a bunch of randomly generated points, each with two randomly selected 'partners' from the set of points. In the simulation the points try to move such that they ...
rysuds's user avatar
  • 13
2 votes
2 answers
284 views

Is there a nice way of relating the adjacency, incidence , Laplacian matrices and other matrices associated to a graph of a total graph with its original graph, or, say, at least relating that of the ...
vidyarthi's user avatar
  • 2,145
5 votes
1 answer
497 views

Let ${\bf A}_n$ be an $2n \times 2n$ matrix that is defined as follows $$ {\bf A}_n=\left( \begin{array}{c} 0&0&\cdots&0&0&0&0&1&1\\ 0&0&\cdots&0&0&...
Amin235's user avatar
  • 313
2 votes
1 answer
356 views

A colleague in spatial statistics was looking at a map with about 600 regions. For the application she's considering, the induced adjacency matrix had some undesirable properties (where two regions ...
Gabe K's user avatar
  • 6,523
3 votes
1 answer
802 views

How can I find all binary matrices $A$ such that $A^3$ is a non-negative, integer square matrix and $$\mbox{diag}\left(A^3\right)=b$$ for some given vector $b$? Is there a way to characterize all ...
Student88's user avatar
  • 503
10 votes
1 answer
656 views

For two regular graphs $G$ and $H$, it is possible for them to share the same adjacent spectrum and the same laplacian spectrum. While, on the other hand, is it possible to have two non-regular graphs ...
josephS's user avatar
  • 103
1 vote
0 answers
124 views

Let $A\in\mathbb{R}^{n\times n}$ be a non-negative and irreducible matrix. Consider $B:=AA^\top$. It can be proved (I can post a proof if needed) that the following condition is necessary and ...
Ludwig's user avatar
  • 2,752
2 votes
0 answers
192 views

I am somewhat stuck working on an issue and would really love some guidance. I will state the problem, my current state and what led to it in case the solution lies beyond where I was looking The ...
Elayeek's user avatar
  • 21
8 votes
3 answers
9k views

The adjacency matrix of a non-oriented connected graph is symmetric, hence its spectrum is real. If the graph is bipartite, then the spectrum of its adjacency matrix is symmetric about 0. A few ...
Delio Mugnolo's user avatar
12 votes
5 answers
2k views

I am working on a problem in matrix analysis and I am looking for certain types of normal matrices. I suspect that these "special" normal matrices arise as adjacency matrices of certain graphs. My ...
Mustafa Said's user avatar
  • 3,779
1 vote
2 answers
224 views

I am revising a paper where one of the operations performed on a undirected graph with no loops, is to take each vertex, and split it into two vertices, and take each edge and replace it with 4 edges: ...
Penguian's user avatar
  • 129
-2 votes
1 answer
360 views

Consider a graph with N nodes. All nodes are distributed as a Poisson point process with density of λ in a L*L area. There is an edge between two nodes if and only if the distance between them is less ...
xzhh's user avatar
  • 55
1 vote
1 answer
285 views

A bounded linear operator $T$ on a Banach space $X$ is called power bounded if $\|T^k\|\le M$ for some $M>0$ and all $k\in \mathbb N$. A classical result of Lorch says that if $X$ is reflexive, ...
Delio Mugnolo's user avatar
14 votes
2 answers
7k views

I am currently writing up some notes on the max-plus algebra $\mathbb{R}_{\max}$ (for those that have never seen the term "max-plus algebra", it is just $\mathbb{R}$ with addition replaced ...
user4977's user avatar
  • 403