Adjacency matrix calculator
Turn any graph into its adjacency matrix. Paste an edge list (A-B), an adjacency list (A: B C D) or a binary matrix — the tool auto-detects the format, builds the labelled adjacency matrix, and reports the degree sequence, in/out-degrees for directed graphs, and the vertex and edge counts.
Related tools
All Matrices & vectors tools →Open Adjacency matrix calculator and you get an answer straight away, with no account to create. It covers B C D) or a binary matrix — the tool auto-detects the format, builds the labelled adjacency matrix, and reports the degree sequence, in/out-degrees for directed graphs, and the vertex and edge counts — adjust any of them and the result follows immediately.
How to use it
- Open the tool — no signup or install needed.
- Enter your input or adjust the available options.
- Get your result instantly, then copy or download it.
Frequently asked questions
What does Adjacency matrix calculator do?
Turn any graph into its adjacency matrix. Paste an edge list (A-B), an adjacency list (A: B C D) or a binary matrix — the tool auto-detects the format, builds the labelled adjacency matrix, and reports the degree sequence, in/out-degrees for directed graphs, and the vertex and edge counts.
What does a concrete case look like?
A–B, B–C → [[0, 1, 0], [1, 0, 1], [0, 1, 0]] — the tool shows every step in between, not just the final figure.
What does it take into account?
It factors in B C D) or a binary matrix — the tool auto-detects the format, builds the labelled adjacency matrix, and reports the degree sequence, in/out-degrees for directed graphs, and the vertex and edge counts. Change any of them and the output follows immediately.
When would I actually use this?
Checking a decomposition done by hand, solving a linear system, and finding the eigenvalues that describe how a transformation stretches space.
What is the most common mistake?
Inverting a matrix to solve a system. Elimination or a factorisation is both faster and far more stable numerically; an explicit inverse amplifies rounding error, especially when the matrix is close to singular.
How is Adjacency matrix calculator different from Matrix Calculator?
They sit next to each other but answer different questions: Matrix Calculator is the one to open when you need it to add, subtract and multiply matrices, scale, transpose, and find the determinant and inverse of A. Pick whichever matches what you're starting from — both are free.
Is there a tool for the next step?
2×2 matrix determinant calculator is the closest one after this: Compute the determinant of a 2×2 matrix (ad − bc).
What else is worth having open alongside it?
Matrix Power Calculator (Aⁿ, n from −10 to 20) and Matrix Rank Calculator — they come up in the same task often enough to be worth a second tab.
Where do the figures come from?
The decompositions follow their textbook definitions with partial pivoting where it applies. Results are exact for small integer matrices and subject to floating-point rounding otherwise.