Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
GraphTheory[IsVertexColorable]
Calling Sequence
IsVertexColorable(G, k, col)
IsVertexColorable(G, k, d, col)
Parameters
G
-
undirected graph
k
non-negative integer (the number of colors)
d
(optional) positive integer (distance)
col
(optional) name
Description
The IsVertexColorable(G,k) function returns true if the graph G is k-colorable and false otherwise. That is, if the vertices of G can be colored with k colors such that no two adjacent vertices have the same color.
If an optional argument d is specified, then IsVertexColorable(G,k,d) returns true if the graph G is (k,d) colorable, and false otherwise. That is, it returns true if the vertices of G can be colored with k colors such that two vertices with any given color are at least distance d apart. When d is not specified it is assumed to be 1.
If a name col is specified, then this name is assigned the list of colors of a coloring of the vertices of G, if it exists.
The algorithm first tries a greedy coloring of the vertices of G starting with a maximum clique in G. If this fails to find a k-coloring it does an exhaustive search using a backtracking algorithm. The problem of testing if a graph is k-colorable is NP-complete, meaning that no efficient (polynomial time) algorithm is known. The exhaustive search will take exponential time on some graphs.
Examples
See Also
ChromaticNumber, CircularChromaticNumber, GreedyColor, IsEdgeColorable
Download Help Document