IsTree - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


GraphTheory

  

IsTree

  

test if graph is a tree

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

IsTree(G)

Parameters

G

-

an undirected graph

Description

• 

An undirected graph G on n vertices is a tree if it is connected and has exactly n1 edges.

• 

The IsTree command returns true if the input graph is a tree, and false otherwise.

Examples

withGraphTheory:

TGraph1,2,1,3

TGraph 1: an undirected graph with 3 vertices and 2 edge(s)

(1)

IsTreeT

true

(2)

CGraph1,2,1,3,2,3

CGraph 2: an undirected graph with 3 vertices and 3 edge(s)

(3)

IsTreeC

false

(4)

See Also

CompleteBinaryTree

IsAcyclic

IsConnected

IsForest

NumberOfEdges

NumberOfVertices

RandomTree

SpanningTree

TreeHeight