Difference between revisions of "Graph Theory"
(→Taxonomy) |
(→Taxonomy) |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 28: | Line 28: | ||
## Dependency Graph: Shows dependencies between elements | ## Dependency Graph: Shows dependencies between elements | ||
## [[Trust Graph]]: Allows evaluation or attestation of Entities (Nodes) | ## [[Trust Graph]]: Allows evaluation or attestation of Entities (Nodes) | ||
| + | |||
| + | Node (Vertex): A fundamental point or entity in a graph that represents an object or data point | ||
| + | |||
| + | Edge (Link/Arc): A connection between two vertices that represents a relationship or path | ||
| + | |||
| + | Degree: The number of edges connected to a vertex | ||
| + | |||
| + | In-degree: Number of incoming edges (directed graphs) | ||
| + | * Out-degree: Number of outgoing edges (directed graphs) | ||
| + | * Weight: A numerical value assigned to an edge representing cost, distance, or strength | ||
| + | |||
| + | Path: A sequence of vertices connected by edges | ||
| + | |||
| + | Tree: A connected, acyclic graph where any two vertices are connected by exactly one path | ||
| + | |||
| + | Cycle: A path that starts and ends at the same vertex | ||
| + | |||
| + | Loop (Self-loop): An edge that connects a vertex to itself | ||
| + | |||
| + | Adjacent Vertices: Two vertices connected by an edge | ||
| + | |||
| + | Neighbor: A vertex directly connected to another vertex | ||
| + | |||
| + | Subgraph: A graph formed from a subset of vertices and edges from a larger graph | ||
| + | |||
| + | Connected Component: A maximal set of vertices where each pair has a connecting path | ||
| + | |||
| + | Root: The top vertex in a tree structure | ||
| + | |||
| + | Leaf: A vertex with degree 1 in a tree (no children) | ||
==References== | ==References== | ||
[[Category: Mathematics]] | [[Category: Mathematics]] | ||
Latest revision as of 12:32, 25 February 2026
Contents
Meme
Graph Theory
Context
Taxonomy
- By Structure:
- Undirected Graph: Edges have no direction; connections are bidirectional
- Directed Graph (Digraph): Edges have direction; connections flow one way
- Weighted Graph: Edges have assigned values or costs
- Unweighted Graph: All edges are equal; no values assigned
- By Connectivity:
- Connected Graph: Path exists between every pair of vertices
- Disconnected Graph: Some vertices have no connecting path
- Complete Graph: Every vertex connects to every other vertex
- Tree: Connected graph with no cycles
- By Cycles:
- Acyclic Graph: Contains no cycles or loops
- Cyclic Graph: Contains at least one cycle
- DAG (Directed Acyclic Graph): Directed graph with no cycles
- By Representation:
- Simple Graph: No self-loops or multiple edges between vertices
- Multigraph: Multiple edges allowed between vertices
- Pseudograph: Self-loops and multiple edges allowed
- By Application:
- Social Network Graph: Represents relationships between people
- Knowledge Graph: Represents entities and their relationships
- Flow Network: Models flow of resources through a network
- Dependency Graph: Shows dependencies between elements
- Trust Graph: Allows evaluation or attestation of Entities (Nodes)
Node (Vertex): A fundamental point or entity in a graph that represents an object or data point
Edge (Link/Arc): A connection between two vertices that represents a relationship or path
Degree: The number of edges connected to a vertex
In-degree: Number of incoming edges (directed graphs)
- Out-degree: Number of outgoing edges (directed graphs)
- Weight: A numerical value assigned to an edge representing cost, distance, or strength
Path: A sequence of vertices connected by edges
Tree: A connected, acyclic graph where any two vertices are connected by exactly one path
Cycle: A path that starts and ends at the same vertex
Loop (Self-loop): An edge that connects a vertex to itself
Adjacent Vertices: Two vertices connected by an edge
Neighbor: A vertex directly connected to another vertex
Subgraph: A graph formed from a subset of vertices and edges from a larger graph
Connected Component: A maximal set of vertices where each pair has a connecting path
Root: The top vertex in a tree structure
Leaf: A vertex with degree 1 in a tree (no children)