+ All Categories
Home > Documents > Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of...

Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of...

Date post: 03-Jan-2016
Category:
Upload: janice-pope
View: 216 times
Download: 1 times
Share this document with a friend
Popular Tags:
28
Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired solutions are integer but it has been proven that the basic feasible solutions are all integral so integer programming tactics are not required.
Transcript
Page 1: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

Two applications of linear programming to chemistry:

Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP.

The desired solutions are integer but it has been proven that the basic feasible solutions are all integral so integer programming tactics are not required.

Page 2: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

Matching: collection of disjoint edges.Benzenoid hexagon: hexagon with 3 matching edges.Fries number: maximum over all perfect matchings of the number of benzenoid hexagons.

2

Page 3: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.
Page 4: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

Proof that the solutions to the LP are integral:@ARTICLE{LP_Fries,author = {Hernan G. Abeledo and Gary W. Atkinson},title = {Polyhedral Combinatorics of Benzenoid Problems},journal = {Lect. Notes Comput. Sci},year = {1998},volume = {1412},pages = {202--212}}

Page 5: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

One variables xe for each edge e.Two variables per hexagon.All variables areconstrained to be between 0 and 1.

y1= 1 pink hex. is benzenoid because of red edges.y2= 1 pink hex. is benzenoid because of blue edges.y3= 1 aqua hex. is benzenoid because of red edges.y4= 1 aqua hex. is benzenoid because of blue edges.

Maximize y1 + y2 + y3 + y4

Page 6: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

Maximize y1 + y2 + y3 + y4

To get a perfect matching:

For each vertex, the number of edges incident sums to 1:

x1+ x2= 1x2 + x3= 1x3 + x4 + x11= 1…

Page 7: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

To ensure benzenoid hexagons:Red edges of pink:x1- y1 ≥ 0x3- y1 ≥ 0x9- y1 ≥ 0Blue edges of pink:x2 - y2 ≥ 0x10- y2 ≥ 0x11- y2 ≥ 0Red edges of aqua:x4 - y3 ≥ 0x6 - y3 ≥ 0x8 - y3 ≥ 0

Blue edges of aqua:x5 - y4 ≥ 0x7 - y4 ≥ 0x11 - y4 ≥ 0

Page 8: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

Clar number: maximum over all perfect matchings of the number of independent benzenoid hexagons.

8

Page 9: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.
Page 10: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

LP for the Clar number: The LH edge of each hexagon is its canonical edge.

Page 11: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

The corresponding matching is the canonical matching for the hexagon.

Page 12: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

If a hexagon is Clar, assume it realizes its canonical matching.

Page 13: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

Two variables xe, ze for each edge e.One variable yh for each hexagon h.All variables areconstrained to be between 0 and 1.ze= 1 if e is a perfect matching edge.xe = 1 if e is a matching edge not in a benzenoid hexagon.yh = 1 if h is an independent benzenoid

hexagon and 0 otherwise.

Page 14: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

Maximize y1 + y2

To get a perfect matching:

For each vertex, the number of edges incident sums to 1:

z1+ z2= 1z2 + z3= 1z3 + z4 + z11= 1…

Page 15: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

To get the independent benzenoid hexagons:For the pink hexagon:x1 + y1 –z1 = 0x2 –z2 = 0x3 + y1 – z3= 0x11- z11= 0x9 + y1 –z9 = 0x10 –z10= 0

If y1=1, y2=0 since x11 + y2 – z11= 0

If y1= 1 thenz1 = z3 = z9 = 1 ⟹z2 = z11= z10 = 0

Page 16: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

http://www.springerimages.com/Images/RSS/1-10.1007_978-94-007-1733-6_8-24

Page 17: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

17

Page 18: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

It’s possible to find the Fries number and the Clar number using linear programming.

This is an example of a problem that is an integer programming problem where the integer solution magically appears when solving the linear programming problem.

http://www.javelin-tech.com/blog/2012/07/sketch-entities-splitting/magician-2/

Page 19: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

19

“The CKC algorithm”

Page 20: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

20

The CKC algorithm

G molecular graph

A(G) adjacency matrix

aij = 1 for edges (i,j) of G = 0 otherwise

Page 21: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

21

The CKC algorithm:

Hadamard Product: B = C D bij=cij dij

Form the iterated Hadamard* product

Pk+1 = Pk (Pk)-1

starting from the adjacency matrix P0 = A

Page 22: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

22

=1_2

+

Equally weighted combination of two maximum-Fries perfect matchings

Page 23: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

23

Converged PGraph

Problem 1: Exponential choice of matchings: 2h

Bad choice Good choice

h = 7

Page 24: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

24

Converged PGraph

Problem 1: Exponential choice of matchings: 2h

Bad choice Good choice

h = 7

Page 25: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

25

Examples with only 2 good choices from 2h

2 out of 2

2 out of 4

2 out of 8

2 out of 16

Page 26: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

26

Smallest counterexamples to CKC : 7 hexagons

Problem 2: Underestimation of the Fries number

CKCF = 5

BestF = 6

Page 27: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

27

22 9

1714

12

1417

12

14

16

27

14

18

18

4

3

16

9

14

15

49

3

3

1417

4

14

9

9

13

22

14

12

13

15

*

In the starred hexagon:

CKC chooses 12 16 16 F = 5

Fries chooses 12 15 15 F = 6

X

:-)

Page 28: Two applications of linear programming to chemistry: Finding the Clar number and the Fries number of a benzenoid in polynomial time using a LP. The desired.

28

Two perfect matchings of maximum weight: 14 18 18CKC is choosing the wrong one


Recommended