Composition of Solutions for the n+k Queens Separation Problem Biswas Sharma Jonathon Byrd Morehead State University Department of Mathematics, Computer.

Slides:



Advertisements
Similar presentations
Computer Graphics: 2D Transformations
Advertisements

EE384y: Packet Switch Architectures
Finding The Unknown Number In A Number Sentence! NCSCOS 3 rd grade 5.04 By: Stephanie Irizarry Click arrow to go to next question.
1 Vorlesung Informatik 2 Algorithmen und Datenstrukturen (Parallel Algorithms) Robin Pomplun.
Copyright © 2003 Pearson Education, Inc. Slide 1 Computer Systems Organization & Architecture Chapters 8-12 John D. Carpinelli.
Copyright © 2011, Elsevier Inc. All rights reserved. Chapter 6 Author: Julia Richards and R. Scott Hawley.
Properties Use, share, or modify this drill on mathematic properties. There is too much material for a single class, so you’ll have to select for your.
UNITED NATIONS Shipment Details Report – January 2006.
and 6.855J Cycle Canceling Algorithm. 2 A minimum cost flow problem , $4 20, $1 20, $2 25, $2 25, $5 20, $6 30, $
1 RA I Sub-Regional Training Seminar on CLIMAT&CLIMAT TEMP Reporting Casablanca, Morocco, 20 – 22 December 2005 Status of observing programmes in RA I.
Jeopardy Q 1 Q 6 Q 11 Q 16 Q 21 Q 2 Q 7 Q 12 Q 17 Q 22 Q 3 Q 8 Q 13
Jeopardy Q 1 Q 6 Q 11 Q 16 Q 21 Q 2 Q 7 Q 12 Q 17 Q 22 Q 3 Q 8 Q 13
Title Subtitle.
Multiplication Facts Review. 6 x 4 = 24 5 x 5 = 25.
Multiplying binomials You will have 20 seconds to answer each of the following multiplication problems. If you get hung up, go to the next problem when.
Frigid Fridays On each Friday last January, the temperature was a record low temperature for the date. On Friday, January 30, the mercury dropped to 5°F,
0 - 0.
2 pt 3 pt 4 pt 5 pt 1 pt 2 pt 3 pt 4 pt 5 pt 1 pt 2 pt 3 pt 4 pt 5 pt 1 pt 2 pt 3 pt 4 pt 5 pt 1 pt 2 pt 3 pt 4 pt 5 pt 1 pt ShapesPatterns Counting Number.
FACTORING Think Distributive property backwards Work down, Show all steps ax + ay = a(x + y)
FACTORING ax2 + bx + c Think “unfoil” Work down, Show all steps.
Polygon Scan Conversion – 11b
School Shop. Welcome to my shop. You have 10p How much change will you get? 7p 3p change.
C1 Sequences and series. Write down the first 4 terms of the sequence u n+1 =u n +6, u 1 =6 6, 12, 18, 24.
ABC Technology Project
EU Market Situation for Eggs and Poultry Management Committee 21 June 2012.
Displaying Data from Multiple Tables
MAT 205 F08 Chapter 12 Complex Numbers.
XML and Databases Exercise Session 3 (courtesy of Ghislain Fourny/ETH)
CS 6143 COMPUTER ARCHITECTURE II SPRING 2014 ACM Principles and Practice of Parallel Programming, PPoPP, 2006 Panel Presentations Parallel Processing is.
Advance Mathematics Section 3.5 Objectives:
Factors, Prime Numbers & Composite Numbers
Copyright © 2013, 2009, 2006 Pearson Education, Inc.
Copyright © 2013, 2009, 2006 Pearson Education, Inc.
Copyright © 2013, 2009, 2006 Pearson Education, Inc. 1 Section 5.5 Dividing Polynomials Copyright © 2013, 2009, 2006 Pearson Education, Inc. 1.
Copyright © 2012, Elsevier Inc. All rights Reserved. 1 Chapter 7 Modeling Structure with Blocks.
1 RA III - Regional Training Seminar on CLIMAT&CLIMAT TEMP Reporting Buenos Aires, Argentina, 25 – 27 October 2006 Status of observing programmes in RA.
P Preparation for Calculus.
Adding and Subtracting Integers
Basel-ICU-Journal Challenge18/20/ Basel-ICU-Journal Challenge8/20/2014.
1..
© 2012 National Heart Foundation of Australia. Slide 2.
Graphing Ax + By = C Topic
Adding Up In Chunks.
LO: Count up to 100 objects by grouping them and counting in 5s 10s and 2s. Mrs Criddle: Westfield Middle School.
Do Now 10/22/ = 10 = ? Copy HW in your planner.
Do Now 1/13/10 Take out HW from last night. Copy HW in your planner
Book Embeddings of Chessboard Graphs Casey J. Hufford Morehead State University.
Solving N+k Queens Using Dancing Links Matthew A. Wolff Morehead State University May 19, 2006.
Addition 1’s to 20.
25 seconds left…...
Subtraction: Adding UP
Copyright © Cengage Learning. All rights reserved.
1 Non Deterministic Automata. 2 Alphabet = Nondeterministic Finite Accepter (NFA)
Solving the eValue Rubik’s cube
Analyzing Genes and Genomes
Abdollah Khodkar Department of Mathematics University of West Georgia Joint work with Arezoo N. Ghameshlou, University of Tehran.
We will resume in: 25 Minutes.
Essential Cell Biology
Solving Addition and Subtraction Inequalities
PSSA Preparation.
Essential Cell Biology
Immunobiology: The Immune System in Health & Disease Sixth Edition
Energy Generation in Mitochondria and Chlorplasts
How to create Magic Squares
1 Decidability continued…. 2 Theorem: For a recursively enumerable language it is undecidable to determine whether is finite Proof: We will reduce the.
Columbus State Community College
2.4 An Introduction to Applications of Linear Equations
The Equivalence Number and Transit Graphs for Chessboard Graphs B. Nicholas Wahle Morehead State University.
N+k Queens Reflections
Presentation transcript:

Composition of Solutions for the n+k Queens Separation Problem Biswas Sharma Jonathon Byrd Morehead State University Department of Mathematics, Computer Science and Physics

Queen’s Movements Forward and backward Left and right Main diagonal and cross diagonal

n Queens Problem Can n non-attacking queens be placed on an n x n board? Yes, solution exists for n=1 and n ≥ 4.

n Queens Problem 11 non-attacking queens on an 11 x 11 board

n + k Queens Problem If pawns are added, they block some attacks and hence allow for more queens to be placed on an n x n board. Can we place n + k non-attacking queens and k pawns on an n x n chessboard? General solution exists when n > max{87+k, 25k}

n + k Queens Problem 11 x 11 board with 12 queens and 1 pawn

n + k Queens Problem Specific solutions for lesser n-values found for k=1, 2, 3 corresponding to n ≥ 6,7,8 respectively We want to lower the n-values for k-values greater than 3 k valuesMin board size (n) kn > max{87+k, 25k}

Composition of Solutions Step 1: Pick and check an n Queens solution

Composition of Solutions Step 1: Pick and check an n Queens solution

Composition of Solutions Step 1: Pick and check an n Queens solution

Composition of Solutions Step 1: Pick and check an n Queens solution

Composition of Solutions Step 1: Pick and check an n Queens solution

Composition of Solutions Step 1: Pick and check an n Queens solution

Composition of Solutions Step 1: Pick and check an n Queens solution

Composition of Solutions Step 1: Pick and check an n Queens solution

Composition of Solutions Step 2: Copy it!

Composition of Solutions Step 3: Rotate it!

Composition of Solutions Step 3: Rotate it!

Composition of Solutions Step 3: Rotate it!

Composition of Solutions Step 3: Rotate it!

Composition of Solutions Step 3: Rotate it!

Composition of Solutions Step 3: Rotate it!

Composition of Solutions Step 3: Rotate it!

Composition of Solutions Step 3: Rotate it!

Composition of Solutions Step 3: Rotate it!

Step 4: Overlap it! This is how we compose a (2n-1) board using an n board… … and so all the composed boards are odd-sized.

Step 5: Place a pawn

Step 6: Check diagonals

Step 7: Move Queens

Step 8: Check Diagonals

Final Solution!

Composition of Solutions Dealing with only k = 1 Always yields composed boards of odd sizes n SolutionComposed Size (2n -1 )

Some boards are ‘weird’ E.g. boards of the family 6z, i.e., n = 6,12,18… boards that are known to build boards of sizes (2n-1) = 11,23,35…

Some boards are ‘weird’ n = 12 board with no queen

Some boards are ‘weird’ n = 12 board with 11 non-attacking queens

Some boards are ‘weird’ n = 12 board with 11 originally non- attacking queens and one arbitrary queen in an attacking position

Some boards are ‘weird’ n = 23 board built from n = 12 board This board has 24 non-attacking queens and 1 pawn

Future Work Better patterns for k = 1 Composition of even-sized boards Analyzing k > 1 boards

Thank you Drs. Doug Chatham, Robin Blankenship, Duane Skaggs Morehead State University Undergraduate Research Fellowship

References Bodlaender, Hans. Contest: the 9 Queens Problem. Chessvariants.org. N.p. 3 Jan Web. 12 Mar Chatham, R. D. “Reflections on the N + K Queens Problem.” College Mathematics Journal (2009): Chatham, R.D., Fricke, G. H., Skaggs, R. D. “The Queens Separation Problem.” Utilitas Mathematica. 69 (2006): Chatham, R. D., Doyle, M., Fricke, G. H., Reitmann, J., Skaggs, R. D., Wolff, M. “Independence and Domination Separation on Chessboard Graphs.” Journal of Combinatorial Mathematics and Combinatorial Computing. 68 (2009): 3-17.

Questions? Thank you all

A ‘differently weird’ board 2+6z board (n=14)

All-nighters (may) yield solutions

Example that doesn’t work Step 1: Pick and check an n Queens solution

Example that doesn’t work Step 1: Pick and check an n Queens solution

Example that doesn’t work Step 1: Pick and check an n Queens solution Problem!

Example that doesn’t work Step 1: Pick and check an n Queens solution

Example that doesn’t work Step 1: Pick and check an n Queens solution

Example that doesn’t work Step 1: Pick and check an n Queens solution

Example that doesn’t work Step 1: Pick and check an n Queens solution

Example that doesn’t work Step 1: Pick and check an n Queens solution

Composition of Solutions Step 2: Copy it!

Composition of Solutions Step 3: Rotate it!

Composition of Solutions Step 3: Rotate it!

Step 4: Overlap it!

Step 5: Place a pawn

Step 6: Check diagonals

Step 7: Move Queens

Step 8: Check Diagonals

Review: Check Diagonals