/
Introduction to Symmetry Introduction to Symmetry

Introduction to Symmetry - PowerPoint Presentation

karlyn-bohler
karlyn-bohler . @karlyn-bohler
Follow
386 views
Uploaded On 2018-03-22

Introduction to Symmetry - PPT Presentation

Handbook of Constraint Programming Chapter 10 Presentation by Robert Woodward Advanced CP Fall 2009 1 Overview Introduction Group Theory Cauchy form Cyclic form Composition inverse associativity ID: 661178

group r90 symmetry set r90 group set symmetry r270 solution constraint values symmetries r180 cyclic form theory amp permutation

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Introduction to Symmetry" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Introduction to Symmetry

Handbook of Constraint Programming, Chapter 10Presentation by: Robert WoodwardAdvanced CP, Fall 2009

1Slide2

Overview

IntroductionGroup TheoryCauchy form, Cyclic formComposition, inverse, associativity, group, order of groupGeneratorsConclusion

2Slide3

Introduction

Why is it important?Reduce search spaceSometimes the act of modeling can introduce symmetriesExample: 4-queens on 4x4 board versus 4-queens with one queen per row

1

2

3

4

5

6

78910111213141516

3

1234

Domain: {1,0}

Domain: {1,2,3,4}

Possible Symmetry:Rotate it

Possible Symmetry:

Harder to rotateSlide4

Overview

IntroductionGroup TheoryCauchy form, Cyclic formComposition, inverse, associativity, group, order of groupGeneratorsConclusion

4Slide5

Group Theory

Study of symmetry in mathematicsExplained through permutationsMeaning a bijective mapping from a set onto itselfRepresented as:Group action

How symmetries transform search states

1

2

3

4

5

54321

1

2345

32

16

1

Is this a permutation?

5Slide6

Group Theory

Chessboard Symmetries1

2

3

4

5

6

7

89741852

96

3987

65

43

21

3

6

9

2

5

8

1

4

7

3

2

1

6

5

4

9

8

7

7

8

9

4

5

6

1

2

3

1

4

7258369

963852741

id:

r90:

r180:

r270:

x:

y:

d1:

d2:

6

1

2

3

4

5

6

7

8

9Slide7

Group Theory

Symmetries & permutationsPermutation is a one-to-one correspondence (i.e., bijection) between a set and itselfEach symmetry defines a permutation of the set elementsPermutations can be written in Cauchy formCauchy form has two rows of numbers

Top row is a complete set of numbers (ascending)

Second row is what number the top row maps to

7Slide8

Group Theory

Chessboard Symmetries1

2

3

4

5

6

7

89741852

96

3987

65

43

21

3

6

9

2

5

8

1

4

7

id:

r90:

r180:

r270:

8

1

2

3

4

5

6

7

8

9

1

2

3

4

5

6

7891

23456789

1

2

3

4

5

6

78

9?

??

???

???Slide9

Group Theory

Chessboard Symmetries1

2

3

4

5

6

7

89741852

96

3987

65

43

21

3

6

9

2

5

8

1

4

7

id:

r90:

r180:

r270:

9

1

2

3

4

5

6

7

8

9

1

2

3

4

5

6

7891

23456789

1

2

3

4

5

6

78

97

41

852

963

The r90 symmetry has a cycle (1 7 9 3)

Cyclic Form

Represent symmetries as cyclesSlide10

Cauchy Form

Chessboard Symmetries1

2

3

4

5

6

7

89123456789

74

1852963

9

87

6543

2

1

3

6

9

2

5

8

1

4

7

3

2

1

6

5

4

9

87

7

8

9

4

5

6

1

2

3

1472

583699638527

41id:r90:r180:r270:x:

y:

d1:

d2:

1

2

3

4

5

6

7

8

9

32

1654

987

1

2

3

4

5

6

7

8

9

7

8

9

4

5

6

1

2

3

1

2

3

4

5

6

7

8

9

1

4

7

2

5

8

3

6

9

1

2

3

4

5

6

7

8

9

9

6

3

8

5

2

7

4

1

1

2

3

4

5

6

7

8

9

1

2

3

4

5

6

7

8

9

1

2

3

4

5

6

7

8

9

7

4

1

8

52963

1

2

3456789987654321

1

2

3456789369258147

10Slide11

Group Theory

Chessboard Symmetries1

2

3

4

5

6

7

89741852

96

3987

65

43

21

3

6

9

2

5

8

1

4

7

id:

r90:

r180:

r270:

11

1

2

3

4

5

6

7

8

9

()

(1 3 9 7) + More??Slide12

Group Theory

Chessboard Symmetries1

2

3

4

5

6

7

899876543

2

1369

25

81

47

id:

r90:

r180:

r270:

12

1

2

3

4

5

6

7

8

9

()

(1 3 9 7) (2 4 6 8)

(1 9) (2 8) (3 7) (4 8)

(1 7 9 3) (2 4 8 6)

7

4

1

8

5

2

9

6

3Slide13

Cauchy vs. Cyclic Forms

13Advantage of the Cyclic form: Concise

Disadvantage of cyclic form

Does not define the set of points on which the permutation is acting

Example: 5 is not listed

Cycles can appear in any order

r90:

(1 3 9 7) (2 4 6 8)

7418529

63

7418

52

9

63

r90:

1

2

3

4

5

6

7

8

9

7

4

1

8

5

2

9

6

3Slide14

7

41

8

5

2

9

6

3

Cyclic & Cauchy FormsBoth forms make it easy to see how a permutation acts on a positionp is a position (in book: point)g is a permutationpg is what is moved to position p after g1r90

= 74

r90 = ?

{1,4}r90

=

{7,8}14

r90:Slide15

Composition of Permutations

Given a point p and two permutations f,g

(

f◦g)(p

)

=

(

p

f)gNot like normal function compositionFunction composition (f◦g)(x)=f(g(x))Example

12

3456789

74

18

52

9

6

3

1

2

3

4

5

6

7

8

9

3

2

1

6

5

4

9

8

7

9

r90:

x

:

r90◦x:

1

2

3

4

56789

6

3

8

5

2

7

4

1

also d2

15Slide16

Inverse of Permutations

f◦f-1=idExample

1

2

3

4

5

6

7897418529

63

r90:

swap rows

7

4

1

8

5

2

9

6

3

1

2

3

4

5

6

7

8

9

=

r270

1

2

3

4

5

6

7

8

9

3

6

9258

147r90-1:16Slide17

Associativity of Permutations

f◦(g◦h) = (f◦g

)◦h

Works because of the definition of (permutation) composition

Both will apply

f

to the first element,

g

to the result, and h to the result17Slide18

Group Axioms

Given a non-empty set GG is closed under ◦id ϵ

G

Every element has an inverse

◦ is associative

Order of a group

Number of elements in the set G

|G|

Example: chessboardG = {id, x, y, d1, d2, r90, r180, r270}Every element has an inverser90-1 = r270, r270-1=r90Everything else is inverse of self◦ is associative|G| = 8Not commutative1812

34

56789Slide19

Obtaining Closure

To show that we have a group we need to show closureOne way to show closure is to generate all permutationsResult is from composing them arbitrarilyUse a generator for a group!

19

1

2

3

4

5

6789Slide20

Generator of a Group

GeneratorLet S be a set of elements with ◦The set S generates G if every element of G can be written as a product of elements in SAnd vise-versaS is a set of generators for GDenoted G = <S>

Example: Chessboard

All symmetries can be generated by {r90, d1}

We can obtain all of {id, r90, r180, r270, d1,

y

, d2,

x

} by applying some sequence of compositions of {r90, d1}20Slide21

Generators of a Group

id:r90:

d1:

1

2

3

4

5

67891472

58

369

1

2

3

4

5

6

7

8

9

7

4

1

8

5

2

9

6

3

1

2

3

4

5

6

7

8

9

7

4

1

8

5

2963

123456789

7

41

85

29

63

1

2

3

4

5

67

89

98

765

432

1

=

r90

r90

r90◦r90

1

2

3

4

5

6

7

8

9

7

4

1

8

5

2

9

6

3

r90

1

2

3

4

5

6

7

8

9

3

6

9

2

5

8

1

4

7

=

r90 ◦r90◦r90

1

2

3

4

5

6

7

8

9

7

4

1

8

5

2

9

6

3

r90

1

2

3

4

5

6

7

8

9

1

2

3

4

5

6

7

8

9

=

r90 ◦r90◦r90◦r90

21Slide22

Generators of a Group

x:

1

2

3

4

5

6

78932165498

7

1

2

3

456

7

8

9

7

4

1

8

5

2

9

6

3

1

2

3

4

5

6

7

8

9

1

4

7

2

5

8

3

6

9◦=

r90d1r90◦d1<< What goes here? >>22

r90:

d1:

1

2

34

56

78

91

472

58

369

1

2

3

4

56

7897

4

1

8

5

2

9

6

3Slide23

Subgroup

A subset of G that is itself a groupG is always subgroup of itself{id} is always a subgroup of GExample:{id, r90, r180, r270}Every element can be generatedAs seen two slides ago

Example 2:

{id, x, y}

Is it a subgroup?

1

2

3

45678932165

4

987

1

2

3

4

5

6

7

8

9

7

8

9

4

5

6

1

2

3

x

y

23Slide24

Orbit and Stabiliser

OrbitAll the points to which a point is mapped under GExample, orbit of 1 is {1,3,7,9}1id=1, 1r90=7, 1

r180

=9, r

r270

=3

1

x

=3, 1y=7, 1d1=1, 1d2=9StabiliserIs a set of the elements of the group that do not change the value of a point when they are applied to the pointExample: stabiliser of 1 is {id, d1}In CP, a stabilitizer shows what symmetries are left unbroken after an assignment during search24Slide25

Group Theory in CP

Illustration: ChessboardVariablesn2 variables: squares of the chessboardValues5 values (white queen, black queen, white king, black king, empty)Set

S

n

is all permutations of n forms a group called the symmetric group over n elements

It’s size is n!

Direct product = ??? [HELP!]

25Slide26

Computational Group Theory

Schier Sims algorithmConstruct a stabiliser chainG0 = GG

i

= G

i-1

G

i

=

{σ ϵ G: 0σ = 0 ^ … ^ (i-1)σ = i-1}Gn subset Gn-1 subset G1 subset G0Also computes coset representatives UiOrbits of i in GiUi set of values which i is mapped to by symmetries in G26Slide27

Overview

IntroductionGroup TheoryCauchy form, Cyclic formComposition, inverse, associativity, group, order of groupGeneratorsConclusion

27Slide28

Definitions Overview

fully interchangeableneighbourhood interchangeablelocal interchangeabilitysemantic symmetriessyntactic symmetriessymmetricial constraintintensional

permutability

solution symmetry

problem symmetry

28Slide29

Definitions

Lots of different onesSymmetry as a property of the solution setSymmetry as a property that can be identified in the problem statementBrown, Finkelstein & Purdom: “A symmetry is a permutation that leaves invariant the set of solutions sequences to a problem”Solution Symmetry

Backofen

and Will: “A symmetry S for a constraint program

C

Pr

, where a set of solutions for a given problem is denoted ||

C

Pr||, is a bijective function such that S||CPr||→||CPr||.”<< IS THE DEFINITION RIGHT >>Problem symmetry????29Slide30

More Definitions

Freuder: “Two values a, b for a variable

v

are fully interchangeable

iff

every solution to the CSP containing the assignment <

v

,

a> remains a solution when b is substituted for a, and vice versa.”“Two values a, b for a value v are neighbourhood interchangeable iff for every constraint C on the variable v, the set of variable-value pairs that satisfies the constraint with the pair <v,a> is the same as the set of variable-value pairs that satisfies the constraints with the pair <v

,b>”Choueiry and

Noubir extended interchangeability to local interchangeability30Slide31

More Definitions

Benhamou extends the ideas of value interchangeability to distinguish between:Semantic symmetries are solution symmetriesType1: two values a

i

and

b

i

are symmetric for

satisfiability

iff the existence of a solution with ai guarantees the existence of a solution with bi and vice versaType2: two values ai and bi are symmetric for all solutions iff every solution with ai can be transformed into solution with with b

i and vice versa (Type2 implies Type1)

Both may require finding all solutions to the CSPSyntactic symmetries are problem (constraint) symmetriesPermutations leave the constraint relations unchangedValue interchangeability as a kind of value symmetryWhich is a subset of problem counting31Slide32

Symmetrical Constraint

[Puget 93]Constraint is not affected by the order of variables. Examples: ≠ is symmetricalx+y=z

is not symmetrical

Symmetry of a CSP as a permutation of variables which maps constraints into a symmetrically equivalent set

S:{C

i

}

{

Cj}. Either the constraintIs unchanged by permutation Or Is an instance of a symmetrical constraint and mapped onto a constraint on the same set of variables32Slide33

Intensional

Permutability [Roy & Pachet 98]Variables

Have the same domains

Are subject to the same constraints

Are interchangeable in each of these constraints

Example: Algebraic, linear constraint

If two variables have the same coefficients, same domains

Then they are

intensionally permutable with respect to that constraint33Slide34

Variable & Value Permutation

[Torras & Meseguer01]Symmetrical Constraints & Intensional

Permutability

Permute variables of the problem

Torras

&

Meseguer

introduce variable & value permutationExample: Chessboard18034Slide35

More Definitions

McDonald and Smith: Symmetry is a bijective function σ: AAA is some representation of a state in searchThe follow two holds

1) If A satisfies the constraints, then so does the function

2) If A is a

nogood

then so is

σ

(A)

Allows symmetries to operate on variables and values35Slide36

Definitions Summary

How they agree:symmetries map solutions to solutionsHow they differ:If the map is:any bijective mapping that preserves the solutions must be symmetry or consequence of leaving constraints unchangedWhat aspect of the CSP they act on

variables, values,

vvp

, etc.

36Slide37

Definition From Book

Solution SymmetryPermutation of the set of vvp’s which preserves the set of solutionsProblem SymmetryPermutation of the set of vvp’s which perserves

the set of constraints

37Slide38

Overview

IntroductionGroup TheoryCauchy form, Cyclic formComposition, inverse,

associativity

, group, order of group

Generators

Conclusion

38Slide39

Conclusion

Symmetry limits the search spaceSymmetry is group theoryRepresented as permutationsPast / Current research has a lot of different definitions regarding symmetryMost of it is either solution symmetry or problem symmetry

39Slide40

Thank you!

Any questions?PS: Symmetry is cool

40Slide41

Typos

Page 334 – Paragraph after Example 10.7Second, a group element g operates by the composition operator to permute the values oF other elements in the group.Page 336

– Example 10.17

Values: white queen, black queen, white king, black

queen

king

Page 338 – Second paragraph after Definition 10.19

“Two values ai and bi are symmetric for all solutions if…”41