Advertisement
Guest User

Obsidian Incidence Matrix md

a guest
Mar 18th, 2023
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. # Incident Matrix
  2.  
  3. A matrix representing a graph where the rows represent [[Vertex|verticies]] and columns represent [[Graph edge|edges]]. The elements of the matric represent the number of time the edge connects to the vertex.
  4.  
  5. Example for a graph with 3 vertices and 4 edges
  6. As a table
  7. | | $e_1$ | $e_2$ | $e_3$ | $e_4$ |
  8. | ----- | ----- | ----- | ----- | ----- |
  9. | $v_1$ | a | b | c | d |
  10. | $v_2$ | e | f | g | h |
  11. | $v_3$ | i | j | k | l |
  12.  
  13. As a matrix
  14. $$\begin{pmatrix}
  15. a & b & c & d \\
  16. e & f & g & h \\
  17. i & j & k & l
  18. \end{pmatrix}$$
  19. For an undirected graph, $G$ is simple only if $M[i,j] \leq 1$
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement