Star: Difference between revisions

From Graph
(Created page with "==Definition== A '''star''' is a graph where one vertex is adjacent to all the other vertices, and that vertex is incident on every edge. Explicitly, a star with <math>k</mat...")
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Definition==
==Definition==


A '''star''' is a graph where one vertex is adjacent to all the other vertices, and that vertex is incident on every edge. Explicitly, a star with <math>k</math> edges (and therefore, <math>k + 1</math> vertices) is a graph where one of the <math>k + 1</math> vertices is adjacent to all other <math>k</math> vertices, and there are no edges other than the edges involving that vertex.
A '''star''' is a graph where one vertex is adjacent to all the other vertices, and that vertex is incident on every edge. Explicitly, a star with <math>k</math> edges (and therefore, <math>k + 1</math> vertices) is a graph where one of the <math>k + 1</math> vertices is adjacent to all other <math>k</math> vertices, and there are no edges other than the edges involving that vertex. The vertex that is adjacent to all other vertices is termed the ''center'' of the star (note that this agrees with the usual definition of [[central vertex]]. The center is uniquely defined for <math>k \ge 2</math>.  


A star can also be described as a [[complete bipartite graph]] where one of the parts has size one. Explicitly, a star with <math>k</math> edges can be described as the complete bipartite graph <math>K_{1,k}</math>.
A star can also be described as a [[complete bipartite graph]] where one of the parts has size one. Explicitly, a star with <math>k</math> edges can be described as the complete bipartite graph <math>K_{1,k}</math>.
==Explicit descriptions==
===Adjacency matrix===
If we order the vertices such that the center of the star is the first vertex, the adjacency matrix has the form:
<math>\begin{pmatrix} 0_{1 \times 1} & E_{1 \times k} \\ E_{k \times 1} & 0_{k \times k} \\\end{pmatrix}</math>
where <math>E_{m \times n}</math> denotes a <math>m \times n</math> matrix all of whose entries are equal to 1.
==Arithmetic functions==
===Size measures===
{| class="sortable" border="1"
! Function !! Value !! Explanation
|-
| [[size of vertex set]] || <math>k + 1</math> || As <math>K_{m,n}, m = 1, n = k</math>: <math>m + n = 1 + k = k + 1</math>
|-
| [[size of edge set]] || <math>k</math> || As <math>K_{m,n}, m = 1, n = k</math>: <math>mn = (1)(k) = k</math>
|}
===Numerical invariants===
{| class="sortable" border="1"
! Function !! Value !! Explanation
|-
| {{arithmetic function value|clique number|2}} || As <math>K_{m,n}, m = 1, n = k</math>: 2 (independent of <math>m,n</math>, follows from being bipartite)
|-
| [[independence number]] || <math>k</math> || As <math>K_{m,n}, m = 1, n = k</math>: <math>\max \{ m,n \} = \max \{ 1,k \} = k</math>
|-
| {{arithmetic function value|chromatic number|2}} || As <math>K_{m,n}, m = 1, n = k</math>: 2 (independent of <math>m,n</math>, follows from being bipartite)
|-
| {{arithmetic function value|radius of a graph|1}} || The center vertex is adjacent to every other vertex
|-
| {{arithmetic function value|diameter of a graph|2}} || Any two vertices are either adjacent or have a path of length two between them via the center
|-
| [[odd girth]] || infinite ||  there are no cycles
|-
| [[even girth]] || infinite || there are no cycles
|-
| [[girth of a graph]] || infinite || there are no cycles
|}
==Particular cases==
{| class="sortable" border="1"
! Value of <math>k</math> !! Description of graph
|-
| 1 || single edge graph (note that this is the only case where either vertex can be identified as the center).
|-
| 2 || path graph of length two
|-
| 3 || [[claw]]
|}
==Algebraic theory==
===Adjacency matrix===
If we order the vertices such that the center of the star is the first vertex, the adjacency matrix has the form:
<math>\begin{pmatrix} 0_{1 \times 1} & E_{1 \times k} \\ E_{k \times 1} & 0_{k \times k} \\\end{pmatrix}</math>
where <math>E_{m \times n}</math> denotes a <math>m \times n</math> matrix all of whose entries are equal to 1.
{| class="sortable" border="1"
! Algebraic invariant !! Value !! Explanation
|-
| [[characteristic polynomial of a graph|characteristic polynomial]] || <math>t^{k + 1} - kt^{k - 1}</math>
|-
| [[minimal polynomial of a matrix|minimal polynomial]] || if <math>k > 1</math>: <math>t^3 - kt</math><br>if <math>k = 1</math>: <math>t^2 - k</math> ||
|-
| rank of adjacency matrix || 2 ||
|-
| eigenvalues (roots of characteristic polynomial) || 0 (multiplicity <math>k - 1</math>), <math>\sqrt{k}</math> (multiplicity 1), <math>-\sqrt{k}</math> (multiplicity 1) ||
|}
===Laplacian matrix===
The [[Laplacian matrix]], defined as the matrix difference of the [[degree matrix]] and [[adjacency matrix]], looks as follows:
<math>\begin{pmatrix} k & -E_{1 \times k} \\ -E_{k \times 1} & I_{k \times k} \\\end{pmatrix}</math>
Here, <math>I</math> denotes the [[linear:identity matrix|identity matrix]] of the given (square) dimensions, and <math>E</math> denotes the matrix with all entries one.
We can thus compute various algebraic invariants:
{| class="sortable" border="1"
! Algebraic invariant !! Value !! Explanation
|-
| characteristic polynomial || <math>t(t - (k + 1))(t - 1)^{k-1}</math> ||
|-
| minimal polynomial || If <math>m \ne n</math>: <math>t(t - 1)(t - (k + 1))</math><br>If <math>m = n</math>: <math>t(t - m)(t - 2m)</math> ||
|-
| rank of Laplacian matrix || <math>k</math> ||
|-
| eigenvalues (roots of characteristic polynomial) || 0 (1 time), <math>k + 1</math> (1 time), 1 (<math>k - 1</math> times) ||
|}
===Normalized Laplacian matrix===
The [[normalized Laplacian matrix]] is as follows:
<math>\begin{pmatrix} 1 & (-1/\sqrt{k}) E_{1 \times k} \\ (-1/\sqrt{k}) E_{k \times 1} & I_{k \times k} \\\end{pmatrix}</math>
The matrix is uniquely defined up to permutation by conjugations. Below are some algebraic invariants associated with the matrix:
{| class="sortable" border="1"
! Algebraic invariant !! Value !! Explanation
|-
| characteristic polynomial || <math>t(t - 2)(t - 1)^{k-1}</math><br>Note that when <math>k = 1</math>, this simplifies to <math>t(t - 2)(t - 1)</math> ||
|-
| minimal polynomial || If <math>k > 1</math>: <math>t(t - 1)(t - 2)</math><br>If <math>k = 1</math>: <math>t(t - 2)</math> ||
|-
| rank of normalized Laplacian matrix || <math>k</math> ||
|-
| eigenvalues (roots of characteristic polynomial) || 0 (1 time), 2 (1 time), 1 (<math>k - 1</math> times) ||
|}

Latest revision as of 00:33, 26 May 2014

Definition

A star is a graph where one vertex is adjacent to all the other vertices, and that vertex is incident on every edge. Explicitly, a star with edges (and therefore, vertices) is a graph where one of the vertices is adjacent to all other vertices, and there are no edges other than the edges involving that vertex. The vertex that is adjacent to all other vertices is termed the center of the star (note that this agrees with the usual definition of central vertex. The center is uniquely defined for .

A star can also be described as a complete bipartite graph where one of the parts has size one. Explicitly, a star with edges can be described as the complete bipartite graph .

Explicit descriptions

Adjacency matrix

If we order the vertices such that the center of the star is the first vertex, the adjacency matrix has the form:

where denotes a matrix all of whose entries are equal to 1.

Arithmetic functions

Size measures

Function Value Explanation
size of vertex set As :
size of edge set As :

Numerical invariants

Function Value Explanation
clique number 2 As : 2 (independent of , follows from being bipartite)
independence number As :
chromatic number 2 As : 2 (independent of , follows from being bipartite)
radius of a graph 1 The center vertex is adjacent to every other vertex
diameter of a graph 2 Any two vertices are either adjacent or have a path of length two between them via the center
odd girth infinite there are no cycles
even girth infinite there are no cycles
girth of a graph infinite there are no cycles

Particular cases

Value of Description of graph
1 single edge graph (note that this is the only case where either vertex can be identified as the center).
2 path graph of length two
3 claw

Algebraic theory

Adjacency matrix

If we order the vertices such that the center of the star is the first vertex, the adjacency matrix has the form:

where denotes a matrix all of whose entries are equal to 1.

Algebraic invariant Value Explanation
characteristic polynomial
minimal polynomial if :
if :
rank of adjacency matrix 2
eigenvalues (roots of characteristic polynomial) 0 (multiplicity ), (multiplicity 1), (multiplicity 1)

Laplacian matrix

The Laplacian matrix, defined as the matrix difference of the degree matrix and adjacency matrix, looks as follows:

Here, denotes the identity matrix of the given (square) dimensions, and denotes the matrix with all entries one.

We can thus compute various algebraic invariants:

Algebraic invariant Value Explanation
characteristic polynomial
minimal polynomial If :
If :
rank of Laplacian matrix
eigenvalues (roots of characteristic polynomial) 0 (1 time), (1 time), 1 ( times)

Normalized Laplacian matrix

The normalized Laplacian matrix is as follows:

The matrix is uniquely defined up to permutation by conjugations. Below are some algebraic invariants associated with the matrix:

Algebraic invariant Value Explanation
characteristic polynomial
Note that when , this simplifies to
minimal polynomial If :
If :
rank of normalized Laplacian matrix
eigenvalues (roots of characteristic polynomial) 0 (1 time), 2 (1 time), 1 ( times)