Hashiwokakero. T. Morsink. August 31, 2009

Size: px
Start display at page:

Download "Hashiwokakero. T. Morsink. August 31, 2009"

Transcription

1 Hahiwokakero T. Morink Augut 31, 2009

2 Content 1 Introduction 3 2 What i Hahiwokakero? The rule Eay olving tatement Building an Own Solver The eay olver The better olver Single connected group Solving the Puzzle with the Sugar CSP-Solver Getting the input file format right Uing Sugar Expectation Sugar v own olver Making a Puzzle Generator 12 6 Reult Experiment Reult Time Own olver Sugar Generator v own olver v Sugar Concluion 19 8 Acknowledgement 19 Reference 19 Appendix 21 2

3 1 Introduction Thi thei i the reult of a Bachelor Project at the Univerity of Leiden in the Netherland. The project wa upervied by Dr. W.A. Koter. It i about Hahiwokakero, a Japanee puzzle. The object of the puzzle i to connect iland by mean of bridge into a ingle connected group. With thi thei we will how how efficient our own olver i in contrat to another proven one. 2 What i Hahiwokakero? 2.1 The rule Hahiwokakero (alo known a Bridge) i an intereting Japanee puzzle from Nikoli [1], the publiher of puzzle like Sudoku and Nonogram. The rule are quite imple, yet within the rule one can make pretty difficult puzzle. Hahiwokakero i played on a rectangular grid. The ize of the grid doen t really matter. In the grid the player will find node, alo known a iland (ee the left picture of Figure 1). Thee node have a value in them ranging from 1 through 8. The goal i to connect all thee iland with bridge. In the end thi hould be a ingle connected group. The player draw bridge between the iland in a traight line. Thee bridge cannot cro other bridge and/or iland, and each bridge connect exactly two iland. Every pair of iland ha a maximum of 2 bridge connecting them. In the end you will have a ingle connected group with on each iland the number of connected bridge matching the value in the iland (ee the right picture in Figure 1) Figure 1: Example puzzle with olution 3

4 2.2 Eay olving tatement To olve thee puzzle there are a number of eay thing to remember. If you have, for example, an iland with value 4 in the corner of your grid, you have only one way to build bridge. Since a pair of iland cannot be connected with more than 2 bridge, the iland with value 4 will have 2 bridge to hi firt neighbouring iland and 2 bridge to hi econd neighbour. Thi imple fact i eaily tranlated into a bit more formal tatement: If an iland ha value n, with n even, and preciely n/2 neighbour, you can draw two bridge to each of n neighbour. If an iland ha value n 1, with n even, with n/2 neighbour, you cannot put two bridge to each of n neighbour, but you do know already omething ele. If an iland ha value n 1, you can draw at leat one bridge to each of it neighbour. With thee two imple tatement you can olve mot puzzle of eay difficulty. However, the puzzle of hard difficulty will give you ome problem. Hard puzzle will ue the fact that it need to be a ingle connected group of iland and give you the illuion there i more than one way to olve the puzzle. 3 Building an Own Solver 3.1 The eay olver A a firt part in thi reearch project, a program in C ++ wa built to olve thee puzzle, uing baically the two imple rule of olving mentioned in Section 2. Thi i a pretty imple program, but a oon a puzzle needed the ingle connected group rule to get olved, it fail. Alo the program had ome difficultie olving certain puzzle, for example it connected two iland of value 1 to each other, or did not draw a bridge where there clearly hould be one due to lack of check or the fact that it needed o many check that i wa better to work on a new program. Thi new program wa deigned to baically jut olve the puzzle without the ingle connected group rule. The approach wa a bit different. If you have a node of value k, calculate the maximum of bridge (after thi called max) you can attach to thi node, ignoring the value of k, but not ignoring the value of the neighbour. If after thi calculation k = max, draw all bridge to the neighbour. If k = max 1 AND k > m, with m being the number of neighbour of the node, you can draw one extra bridge to all neighbour 4

5 (except to node with a value left of 1, thee are only drawn with the firt rule), i.e., if there i one bridge draw the econd, and if there i no bridge then draw one. From now on if the lat approach i ued, we will refer to it a the eay olver Figure 2: n = 8. Left: neighbour have value 2. Right: neighbour have value 2 and the middle node ha value n 1 Note in Figure 2 in the left picture with n being 8, that every neighbour of that node will need at leat a value of 2 or higher to let the node with value 8 draw all of it bridge. If any of the neighbour would have a value of 1 or even 0, the middle node would only be able to draw, repectively, even or ix bridge. In the right picture of Figure 2 you ee what happen when a node ha a value of 7. If every neighbouring node ha at leat a value of 2 and you have 7 bridge to ditribute, there i no indication of which pair of node hould only be connected with only one bridge. The only real fact we know i that every pair of node hould be connected with at leat one bridge, becaue you till need to ditribute 7 bridge over four pair of node. 3.2 The better olver After eeing that the eay olver wa not going to olve puzzle with the ingle connected group rule in them, we needed ome extra olving capabilitie in the program. The eaiet way to get ome extra olving power in the program wa to let the program gue once and then ue the ame olving paramater a in the Eay Solver. So the tep in the new program were going to be: 1. Solve the puzzle a bet you can with the eay olver. 5

6 2. Let the program draw a ingle bridge (a double one if there already i one; thi i referred to a an extenion) and, after the one gue, olve the puzzle again with the eay olver. 3. Check if a olution i found and if the olution i a ingle connected group, if not make a note that on that pot no bridge extenion can be drawn again. 4. Repeat tep 2 and 3 for every poible bridge extenion. Note that in thi cae, if every poible bridge lead to an unolvable puzzle, the program might alo indicate that a olution i not poible. Note that, contradictory to normal reearch behavior, if after the one gue and olving it again the olver happen to find a olution, the program will end aying it ha found a olution to the problem. Thi olution i probably a non-unique olution. 3.3 Single connected group The check to ee if the puzzle i a ingle connected group require ome extra explanation. The check will tart at every node and will try to reach every other node in the puzzle. If it cannot reach a node it will check why the puzzle till i not a ingle connected group. There are a two ditinct cae in which you will ee the gue of the olver fail, cauing it to ban all bridge between two iland, and one cae in which option are till open, and the check olver cannot ay if the puzzle i olvable, but it can ay that at the moment it i not unolvable. Thee three ituation are hown in Figure 3. Note that the picture are not complete puzzle, but mall portion of a larger one. The three ituation are: 1. There i a group of iland with at leat a poibility to draw a bridge to another node completely cut off from poibilitie around it. Thi will caue the olver to fail; ee Figure There i a group of iland connected together, with no more poibilitie going outward to another part of the puzzle. Jut to be clear, thi i not a complete puzzle. Thi will caue the olver to fail; ee Figure There i a group of iland connected together, with one or more poibilitie to draw a bridge to another part of the puzzle, connecting thoe two or more group of iland; ee Figure

7 Figure 3: Example of the option above. A part of the puzzle i depicted. 4 Solving the Puzzle with the Sugar CSP- Solver While looking for way to olve thee puzzel, a olver called Sugar wa found, made by Naoyuki Tamura [2]. Sugar i a SAT-baed Contraint Solver. It i baed on a new SAT-encoding method called order encoding. We wanted to find out how well or how fat thi olver could olve the puzzle in comparion with the olving method from the programmed olver. Thoe method ue random function a bit more, o they could take a lot of time. 4.1 Getting the input file format right Sugar need to get the problem handed in a pecial way. Firt a lit of all variable with the appropriate contraint it i to be given. In our cae the variable are potential bridge with a value between 0 and 2 (being the minimum and maximum number of bridge between two iland). In general the notation would be (<variabletype> <variablename> <bottomcontraint> <topcontraint>). So for example, (int x 0 2) would mean that the integer x would have a value 0 x 2.And (int x ) mean that the integer variable x (the bridge between coordinate (0,0) and (0,6)) ha to be between 0 and 2. After declaration of the variable you get a lit of tatement that um the variable to a certain value. In thi cae thi value wa the value of the node and the variable umming to that value are the potential bridge attached to that node. So, for example, (= (+ x x 00 06) 2) mean that variablex ummed with variablex hould equal 2, meaning that the cro ection of the line going from (0,0) to (5,0) and from (0,0) to (0,6), o in thi cae the point (0,0), will need two bridge going from that point. 7

8 To accomplih thi format we made a parer that would take a puzzle we created in the form we ue in all our program and write it to the form required for Sugar, a een in Figure 4. ;bridge (int x_00_50 0 2) (int x_00_06 0 2) (int x_06_66 0 2) (= (+ x_00_50 x_00_06) 2) (= (+ x_06_66 x_00_06 ) 2) (= (+ x_00_50 ) 1) (= (+ x_06_66 ) 1) 2 2 0/1/2 0/1/2 1 0/1/2 1 Figure 4: Example inputfile.cp format, with correponding puzzle. Here 0/1/2 denote the poible value for bridge. A line that tart with ; contain a comment. No attempt i made to guarantee connectedne. The problem with the the inputfile.cp from Figure 4 i that there i no way to enure that the olution i a ingle connected group. To that end you need a ytem to build a panning tree. Naoyuki Tamura [2] made a cript that, beide making the tatement that our elf built cp code generator alo doe, make uch a tree. The new inpufile.cp generated from thi cript i een in Figure 5. A you can ee in Figure 5 the firt even line are baically (if noted omewhat different) the ame command a in Figure 4. The difference i in that the bridge have direction. The number in the variable name are till the coordinate only for thi example v 0 0 mean the vertical bridge that i drawn from node (0,0) and h 0 0 i the horizontal bridge drawn from node (0,0). The value 1 and 2 mean in thi cae, that vertical bridge have a direction upward and horizontal bridge have a direction to the left. The value 1 and 2 are for direction down and right. The um of the abolute value of the bridge attached to a node (the horizontal and vertical one) are again the value of the node. Now thi i etablihed we introduce a group of new variable, z -variable and r -variable, correponding to the node in the puzzle. The z -variable alway have a value between 1 and the number of node in the puzzle, while the r -variable alway have a value of either 0 or 1. Now there i a group of iff-tatement. For example, (iff (= z 0 0 1) (= r 0 0 1)) mean that the variable z 0 0 i 1 if and only if r 0 0 i 1. The next important thing to note i the line: 8

9 (int v ) (int h ) (= (+ (ab v 0 0) (ab h 0 0)) 2) (int v ) (= (+ (ab v 0 6) (ab h 0 0)) 2) (= (+ (ab v 0 0)) 1) (= (+ (ab v 0 6)) 1) (int z ) (int r ) (iff (= z 0 0 1) (= r 0 0 1)) (int z ) (int r ) (iff (= z 0 6 1) (= r 0 6 1)) (int z ) (int r ) (iff (= z 5 0 1) (= r 5 0 1)) (int z ) (int r ) (iff (= z 6 6 1) (= r 6 6 1)) (= (+ r 0 0 r 0 6 r 5 0 r 6 6) 1) (=> (> v 0 0 0) (< z 0 0 z 5 0)) (=> (> h 0 0 0) (< z 0 0 z 0 6)) (=> (= r 0 0 0) (or (< v 0 0 0) (< h 0 0 0))) (=> (> v 0 6 0) (< z 0 6 z 6 6)) (=> (< h 0 0 0) (< z 0 6 z 0 0)) (=> (= r 0 6 0) (or (< v 0 6 0) (> h 0 0 0))) (=> (< v 0 0 0) (< z 5 0 z 0 0)) (=> (= r 5 0 0) (or (> v 0 0 0))) (=> (< v 0 6 0) (< z 6 6 z 0 6)) (=> (= r 6 6 0) (or (> v 0 6 0))) Figure 5: Example of a better inputfile.cp file for the puzzle in Figure 4 Here connectedne i taken into account. (= (+ r 0 0 r 0 6 r 5 0 r 6 6) 1) Thi line ay that the um of all r -variable i 1. Thi mean that preciely one of thee variable can have the value 1. The idea behind thi i, that from all the node in the puzzle, one i choen to be the root of the panning tree, we are trying to make. In thi example we will choe r 0 0 a the root, thu giving it a value of 1. Now becaue thi i choen, there are a few other effect that will happen. Firt off all, becaue of the line (iff (= z 0 0 1) (= r 0 0 1)) the variable z 0 0 which could have had a value between 1 and 4, will now have value 1. Alo, becaue all of the r -variable together can only have a value of 1, every other r -variable except r 0 0 ha a value of 0 and thu the z -variable will not have a value of 1. Now becaue of the line and (=> (= r 5 0 0) (or (> v 0 0 0))) 9

10 (=> (= r 6 6 0) (or (> v 0 6 0))) we ee that v 0 0 will be larger than 0 and v 0 6 will alo be larger than 0, meaning that both thee bridge have a direction downward. Now we only need the direction of the horizontal bridge. Thi i deducted from the line: (=> (= r 0 6 0) (or (< v 0 6 0) (> h 0 0 0))) Since r 0 6 equal 0 either v 0 6 mut be maller than 0 or h 0 0 mut be larger than 0. We jut etablihed that both vertical bridge run downward and have a value greater than 0, o v 0 6 i not maller than 0, thu h 0 0 mut be larger than 0 and conequently thi bridge ha a direction to the right. Now we have all the direction we need and we can look at the final part of building a tree. The line (=> (> v 0 0 0) (< z 0 0 z 5 0)) (=> (> h 0 0 0) (< z 0 0 z 0 6)) (=> (> v 0 6 0) (< z 0 6 z 6 6)) tell u the lat piece of information. In all the line of the building of the tree, we have not given any value to z -variable of the node, except we choe the root to have value 1. We till need to aign number to the other three z -variable correponding to the other three node. In the three tatement above the firt part i true, all the variable are larger than 0. We can ee that z 0 0 < z 5 0, which hould not be hard to do ince z 0 0 equal 1, o we, perhap, aign a value of 2 to z 5 0. Thi i acceptable ince the z -variable all have value between 1 and the number of node, in thi cae 4. Other value are alo poible a long a it i a value between 1 and the number of node and a path from the root of the tree to a leaf will only encounter increaing number. The next two line how u that z 0 0 < z 0 6 < z 6 6, which i alo doable within the rule. Aign a value of 2 to z 0 6 and a value of 3 to z 6 6. Now we have a graph with direction and value increaing in value the further away from the root they are, ee Figure 6. Here we ee that we have a panning tree to all node and thu we have a ingle connected group within the olution. In general, a panning tree can be contructed (thu having a connected group) preciely when the formula can be atified. 4.2 Uing Sugar After the file i pared, it i time to tart olving the puzzle. One of the more intereting thing of uing Sugar i that you alo need to ue a SAT-Solver. In 10

11 1 > 2 h 0 0 > 0 v 0 0 > 0 2 v 0 6 > 0 3 Figure 6: The panning tree correponding to the puzzle in Figure 4, with the z -value in the node our cae we ued MiniSat [3], a very eay to ue olver with no configuration needed. When that i et up, it i time to let Sugar encode the input file to a file that MiniSat can ue to olve your puzzle. Uing the command java -jar./ugar.jar -encode <file.cp> <file.cnf> <file.map> will do that for you; here ugar.jar i the current verion of the java archive from which Sugar i run. In thi cae Sugar i intalled in the ame directory a the ret of the file. The.cp file i the input file containing the problem you want to olve. The.cnf file i an output file from Sugar ued a an input file for MiniSat to olve the problem. The.map file ued here are file ued by Sugar to tore the variable data with the contraint, o called mapping file. After encoding the file a imple command./minisat <file.cnf> <file.out> will olve the puzzle. The.out file will be ued again by Sugar a an input file. You will immediately ee if the puzzle wa olvable or not. Now you have a couple of file with the olution to the puzzle, which are till not eaily readable. To make it clear and immediately undertandable what the olver did you need to decode the file again with Sugar uing the command java -jar./ugar.jar -decode <file.out> <file.map>. Thi will give you a lit with the variable you declared in your file with their value behind it. To give you a bit of a clearer idea, here are the.cnf,.map and.out file correpeonding to Figure 4. Firt the.cnf file: Secondly the.map file: p cnf

12 int x int x int x Lat the.out file: SAT 4.3 Expectation Sugar v own olver 0 Sugar will probably be able to olve mot to all puzzle given, but we are not ure at the timeframe. Inputting the three different command doe take a bit of time, which i not really efficient. On the other hand with larger puzzle the programmed olver will probably have to take a couple of guee randomly which can be completely wrong and then it will take a lot of time to find the correct olution, o then the time you need to enter the three Sugar command will be fater. In the chapter Reult, you will find the reult of the tet to ee which i fater. 5 Making a Puzzle Generator Another part of thi project wa to make a puzzle generator. Copying puzzle from internet ite i a good way to know you have uniquely olvable puzzle, but it i time conuming. To enure that the puzzle the generator make are within the rule of the puzzle the generator followed thee tep: 1. Put a ingle random node omewhere on the board. 2. From a random node already on the board, draw a ingle or double bridge (decided randomly) in a random direction. Thi will not happen if the node ha no more option to draw a bridge and a new node from where to draw a bridge will randomly be choen. 3. During thi traveral, on every grid point decide whether to go on drawing the bridge or to top and put an iland on that pot. If you encounter a croing bridge at the grid point, place the node on the bridge, if poible, or otherwie place the node one tep back, if poible. 12

13 4. Continue tep 2 through 4 until you have reached the number of node you d like to have (given in the command line when tarting the generator). 5. Check at each node how many bridge are connected and give the node the proper value. 6. Remove the bridge from the puzzle and it i complete. What you ee in Figure 7 i a puzzle with three node being generated tep by tep. In tep I a ingle iland i put on the board. In tep II the generator will chooe automatically that one node and decide to either draw a ingle or double bridge. In thi cae a double bridge wa choen and it will go down to when it decide to top and put down a node. In tep III another node i choen to draw a bridge from and thi time it the lower of the two. A ingle bridge i drawn to the right, until it top again and a node i placed. In tep III the value of the node are alo inerted a a final tep in making the puzzle complete. Step IV, the final tep, how the puzzle a it will be aved. No bridge, jut node that need olving. In thi example, the puzzle i uniquely olvable. Furthermore, the reulting olution ha a ingle connected group I II III IV Figure 7: Generating a puzzle 6 Reult In thi ection, we will how how the elf built olver (called jut olver in the next part) did againt the Sugar program. We would like to how how efficient the olver i in time and number of olved puzzle. 13

14 6.1 Experiment For the experiment we needed to tet the generator, the elf written olver and Sugar. Thi wa done in two different way. Firt we generated and olved with our elf built olver 7 7 puzzle, puzzle and puzzle. The 7 7 puzzle were generated with a maximum number of 7 node, and thu uually with 7 node in the puzzle. The puzzle were generated with a maximum of 15 node, uually generating puzzle with 15 node. The puzzle were generated with a maximum of 30 node, again uually generated with 30 node. In generating the puzzle there i a random chance which could caue, for example, to let the generator put node in all 4 corner of the puzzle and connecting them all with one bridge between them. In thi cae you have only 4 node and the generator will try 10,000 time to put another bridge from a node, which will fail, thu, for example, a puzzle with only 4 node i created. There are more cenario in which thi can happen. That i why we ay that puzzle are uually generated with the number of node pecified. Secondly we olved the ame puzzle with Sugar. Firt the 10, puzzle were generated and olved with the olver and then with ugar. After thi wa done the ame wa done for the 10, puzzle and the 10, puzzle. Every run made a lot of output file, merging them into a few at the end. We meaured a few intereting key point like time taken to do a job of 10,000 puzzle and how many were olved. Alo we examined how the generator generated the puzzle and if the olver and Sugar olved it in the ame way or that there were different olution to a puzzle. 6.2 Reult Time The average time it took the generator to generate 10,000 puzzle and the olver to olve thee puzzle and generate output, wa about 25 minute on an AMD Turion 64 Mobile machine (791 MHz) with 512 MB of internal memory. The fact that the puzzle were much larger than the 7 7 did not reult in any larger run time of the batch. The average time it took the generator to generate the ame 10,000 puzzle and then let Sugar olve them took a lot longer, about 1h45m. Thi i mainly due to the fact that the way Sugar olve puzzle create a lot more file than the elf built olver. Moving, reading and copying thee file took mot of thi time. If you look at a ingle puzzle being olved by MiniSat [3], it took le than a econd, a well a the encoding and decoding by Sugar. 14

15 6.2.2 Own olver To ee how our own olver did, we have ome tatitic to review. A can be een in Figure 8 (left) in the 7 7 puzzle only 2% wa undecided by the olver, i.e., it did not olve the puzzle. A one can ee in Figure 8 (right) from all the olved puzzle 15% wa olved differently than the generator intended. Figure 8: Diagram of (left) percentage of how much the program olved of the 7 7 puzzle and (right) the percentage of puzzle being olved differently than the generator intended them. A we look at the puzzle, we notice that the percentage of undecided puzzle ha grown to 10%, ee Figure 9 (left). The number of puzzle that i olved differently i almot doubled to 28%, a you can be een in Figure 9 (right). Figure 9: Diagram of (left) percentage of how much the program olved of the and (right) the percentage of puzzle being olved differently than the generator intended them. Finally we look at the puzzle. The percentage of undecided puzzle i now 12%, which i not that big an increae, ee Figure 10 (left). 15

16 We aume that the number of undecided puzzle will increae till with the larger puzzle. Alo with increaed ize of the puzzle, the percentage of puzzle olved differently from the generator rie to a value of 38%, ee Figure 10 (right). Thi will alo be common the larger the puzzle get. Figure 10: Diagram of (left) percentage of how much the program olved of the and (right) the percentage of puzzle being olved differently than the generator intended them Sugar Sugar olved every ingle puzzle given by the generator. Thi did not come a a urprie, ince the generator generate only ingle connected group puzzle and Sugar olve thee with eae. It did however took a coniderable time to olve the puzzle Generator v own olver v Sugar Lat but not leat we checked how many of the puzzle were olved the ame way by either the generator, olver or Sugar. Thi wa done by comparing the output file of the job they were given. Both the generator olution file and the olver program olution file had to be rewritten in the ame way a Sugar output the olution. In Figure 11 one can find table of a comparion of the way the program olved the puzzle. Every poibility ha a label, decribed in the lit below. one can alo find example for each poibility, in Sugar output form, in the appendix. In reading the output there were eight ditinct poibilitie: 1. All three olution were identical. The olver olved the puzzle without having to gue a bridge, making the puzzle a puzzle with a unique olution. Thi i labeled 1=2=3, unique in Figure 11. For an example of a olution in Sugar output form where thi i the cae, ee Figure

17 2. All three olution were identical. The olver gueed and o we can not be ure that the olution i unique. Thi i labeled 1=2=3, gue in Figure 11. For an example ee Figure The generator and Sugar had the ame olution, but the olver program found a different one. Thi i mainly due to the guee the olver take. See Figure 11, labeled 1=2, not 3. For an example ee Figure The generator and the olver program had the ame olution, but Sugar found a different one. See Figure 11, labeled 1=3, but not 2. For an example ee Figure The generator had a olution, but Sugar and the olver program found another, both the ame, olution. See Figure 11, labeled 2=3, not 1. For an example ee Figure All three program have a different olution to the puzzle. See Figure 11, labeled All different. For an example ee Figure The olver program could not olve the puzzle, but the generator and Sugar had the ame olution. See Figure 11, labeled 3 fail, 1=2. For an example ee Figure The olver program could not olve the puzzle, and the generator and Sugar had a different olution. See Figure 11, labeled 3 fail, 1 not 2. For an example ee Figure 20. A can be een in Figure 11, the part where all three program have the ame olution and the olver doe not gue, hrink a the puzzle get bigger. Thi i becaue in larger puzzle the chance of a puzzle with cycle, which are olvable in multiple way, become higher. For an example of uch a cycle ee Figure 12. The number of puzzle that are olved the ame way but with ome guee from the olver, doe increae with the puzzle ize. In the ret of the cae, where the olver program doen t fail, we can peak of puzzle with more than one olution. In the cae that the olver program fail to give a olution there are, a mentioned in the lit above, two poibilitie. The generator and Sugar agree on the olution or diagree. In both cae, auming that the olver program can olve all puzzle with a unique olution, we can peak of puzzle with more than one olution. If the generator and Sugar till give the ame olution, thi might be jut a coincidence. When comparing the olution of the eight example hown in the appendix, we notice that a certain ituation occur rather frequently. In a cycle of four node it happen that one program olve it a certain way, and the 17

18 Situation =2=3, unique =2=3, gue =2, not =3, not =3, not All different fail, 1= fail, 1 not Total Figure 11: Table with data comparion of the eight poibilitie mentioned in the lit above. Here 1 i the generator, 2 i Sugar and 3 i the olver. other program olve it with 2 bridge turned 90. So one bridge turn 90 counterclockwie and the oppoite bridge in the cycle turn 90 clockwie Figure 12: An example of how in a cycle the bridge can flip to create a different olution. Value along bridge are the number of bridge. A can be een in Figure 12 there are two different olution. In Figure 12.1 there are two et of node connected with vertical double bridge and a et of node with a horizontal ingle bridge. In thi cae the two vertical bridge flip into a ingle bridge, for example, the left clockwie and the right one counterclockwie. Thi create Figure 12.2, and thu a different olution while till all node having the ame amount of bridge attached to them. Thi i a noticably common ituation between two different olution of the ame puzzle. 18

19 7 Concluion A we can ee in Section 6 our own olver wa really a bit quicker in olving the puzzle. The only problem i that it did not olve all puzzle, ometing that the program Sugar did. A can be een in Figure 11 the generator doe generate a fair number of puzzle with a unique olution. Due to the random factor in generating thee puzzle, we ee that the larger the puzzle get the more difficult it i to generate uch a puzzle. We alo ee that the larger puzzle have a larger chance that all program find a different olution. Thi i becaue the chance of getting cycle that can be flipped i larger. From the perpective of a peron who want to olve the puzzle, having a puzzle with more than one olution can create a more difficult, or even an eaier puzzle, depending on what choice have to be made. The own olver proved to be quite a good olver. Having the number of puzzle it could not olve increaed when the puzzle ize increaed i unfortunate, but it did not grow into a really large percentage (with it wa only 12%). The larger the puzzle get, the better it i to ue Sugar to olve them intead of the own olver. It doe take more time, but the reult are a lot better. A further reearch, we mention a further invetigation into the relation between the quantitie in Figure Acknowledgement I d like to thank Naoyuki Tamura for hi help and quick replie, containing ueful cript and example data. Without that the project would have been a lot harder (if not impoible). Alo I d like to thank my upervior Dr. Walter Koter, who made it eem he had all the time in the world to help me, while juggling hi own buy chedule. Without hi contantly giving hint and idea I d till be at Section 1. Lat but not leat I d like to thank Sandra, my girlfriend, for giving me hope, energy and hug to continue on thi project. Reference [1] Webite Nikoli, [retrieved Augut 18, 2009] 19

20 [2] Webite Sugar, [retrieved Augut 12, 2009] [3] Webite MiniSat, [retrieved Augut 12, 2009] 20

21 Appendix In thi appendix we give example of the eight poibilitie obtainable by comparing the generator, Sugar and olver olution. With thi output it i ometime not poible to obtain the poition of all node, but for our purpoe the example eem ufficient. generator: c Decoding puzzle0.out a h a v a h a v a h a v Sugar: c Decoding puzzle0.out SATISFIABLE a h a v a h a v a h a v olver: c Decoding puzzle0.out a h a v a h a v a h a v Figure 13: Example of a 7 7 puzzle, with generator (top), Sugar (middle) and olver (bottom) having the ame olution. Alo, the olver did not gue, o thi i a puzzle with a unique olution 21

22 generator: c Decoding puzzle55.out a h a h a v a h a v a h Sugar: c Decoding puzzle55.out SATISFIABLE a h a h a v a h a v a h olver: c Decoding puzzle55.out a h a h a v a h a v a h Figure 14: Example of a 7 7 puzzle, with generator (top), Sugar (middle) and olver (bottom) having the ame olution. Alo, the olver did gue, o thi i a puzzle with more than one olution. 22

23 generator: c Decoding puzzle8.out a v a h a v a h a h a v a h Sugar: c Decoding puzzle8.out SATISFIABLE a v a h a v a h a h a v a h olver: c Decoding puzzle8.out a v a h a v a h a v a h Figure 15: Example of a 7 7 puzzle, with generator (top) having ame olution a Sugar (middle), but not with olver (bottom). 23

24 generator: c Decoding puzzle21.out a v a h a v a v a h a v a h Sugar: c Decoding puzzle21.out SATISFIABLE a v a h a v a h a v a h olver: c Decoding puzzle21.out a v a h a v a v a h a v a h Figure 16: Example of a 7 7 puzzle, with generator (top) having ame olution a olver (bottom), but not with Sugar (middle). 24

25 generator: c Decoding puzzle26.out a h a h a v a h a v a h Sugar: c Decoding puzzle26.out SATISFIABLE a h a v a v a h a v a h olver: c Decoding puzzle26.out a h a v a v a h a v a h Figure 17: Example of a 7 7 puzzle, with Sugar (middle) having ame olution a olver (bottom), but not with generator (top). 25

26 generator: c Decoding puzzle22.out a v a h a v a v a h a v a h Sugar: c Decoding puzzle22.out SATISFIABLE a v a h a v a h a v a h olver: c Decoding puzzle22.out a v a h a v a v a h a v a h Figure 18: Example of a 7 7 puzzle, with every program having different olution. 26

27 generator: c Decoding puzzle53.out a v a h a v a h a h a v a h Sugar: c Decoding puzzle53.out SATISFIABLE a v a h a v a h a h a v a h olver FAILS: c Decoding puzzle53.out a h a h a v a h Figure 19: Example of a 7 7 puzzle, with the olver (bottom) failing and generator (top) and Sugar (middle) having the ame olution. 27

28 generator: c Decoding puzzle253.out a h a v a v a h a v a h Sugar: c Decoding puzzle253.out SATISFIABLE a h a v a h a v a v a h a v olver FAILS: c Decoding puzzle253.out a h a v a h a v a h Figure 20: Example of a 7 7 puzzle, with the olver (bottom) failing and generator (top) and Sugar (middle) having a different olution. 28

The Central Limit Theorem

The Central Limit Theorem Objective Ue the central limit theorem to olve problem involving ample mean for large ample. The Central Limit Theorem In addition to knowing how individual data value vary about the mean for a population,

More information

Kalman Filtering Based Object Tracking in Surveillance Video System

Kalman Filtering Based Object Tracking in Surveillance Video System (669 -- 917) Proceeding of the 3rd (2011) CUSE International Conference Kalman Filtering Baed Object racking in Surveillance Video Sytem W.L. Khong, W.Y. Kow, H.. an, H.P. Yoong, K..K. eo Modelling, Simulation

More information

Subcarrier exclusion techniques

Subcarrier exclusion techniques Subcarrier excluion technique for coded OFDM ytem Kai-Uwe Schmidt, Jochen Ertel, Michael Benedix, and Adolf Finger Communication Laboratory, Dreden Univerity of Technology, 62 Dreden, Germany email: {chmidtk,

More information

Analysis. Control of a dierential-wheeled robot. Part I. 1 Dierential Wheeled Robots. Ond ej Stan k

Analysis. Control of a dierential-wheeled robot. Part I. 1 Dierential Wheeled Robots. Ond ej Stan k Control of a dierential-wheeled robot Ond ej Stan k 2013-07-17 www.otan.cz SRH Hochchule Heidelberg, Mater IT, Advanced Control Engineering project Abtract Thi project for the Advanced Control Engineering

More information

Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS

Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS DR. SHALABH DEPARTMENT OF MATHEMATICS AND STATISTICS INDIAN INSTITUTE OF TECHNOLOG KANPUR 1 It i a general aumption in ampling theory that the

More information

Parallel DCMs APPLICATION NOTE AN:030. Introduction. Sample Circuit

Parallel DCMs APPLICATION NOTE AN:030. Introduction. Sample Circuit APPLICATION NOTE AN:030 Parallel DCM Ugo Ghila Application Engineering Content Page Introduction 1 Sample Circuit 1 Output Voltage Regulation 2 Load Sharing 4 Startup 5 Special Application: Optimizing

More information

Mechatronics Laboratory Assignment 5 Motor Control and Straight-Line Robot Driving

Mechatronics Laboratory Assignment 5 Motor Control and Straight-Line Robot Driving Mechatronic Laboratory Aignment 5 Motor Control and Straight-Line Robot Driving Recommended Due Date: By your lab time the week of March 5 th Poible Point: If checked off before your lab time the week

More information

Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018

Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018 EE314 Sytem Spring Semeter 2018 College of Engineering Prof. C.R. Tolle South Dakota School of Mine & Technology Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018 In a prior lab, we et up the baic hardware

More information

Active vibration isolation for a 6 degree of freedom scale model of a high precision machine

Active vibration isolation for a 6 degree of freedom scale model of a high precision machine Active vibration iolation for a 6 degree of freedom cale model of a high preciion machine W.B.A. Boomma Supervior Report nr : Prof. Dr. Ir. M. Steinbuch : DCT 8. Eindhoven Univerity of Technology Department

More information

RESEARCH ON NEAR FIELD PASSIVE LOCALIZATION BASED ON PHASE MEASUREMENT TECHNOLOGY BY TWO TIMES FREQUENCY DIFFERENCE

RESEARCH ON NEAR FIELD PASSIVE LOCALIZATION BASED ON PHASE MEASUREMENT TECHNOLOGY BY TWO TIMES FREQUENCY DIFFERENCE RESEARCH ON NEAR FIED PASSIVE OCAIZATION BASED ON PHASE MEASUREMENT TECHNOOGY BY TWO TIMES FREQUENCY DIFFERENCE Xuezhi Yan, Shuxun Wang, Zhongheng Ma and Yukuan Ma College of Communication Engineering

More information

BY ROD SOLAR AND LAURA LIVESEY

BY ROD SOLAR AND LAURA LIVESEY FIVE THINGS EVERY WEBSITE S HOMEPAGE MUST HAVE To convert more online viitor into patient, include thee element. BY ROD SOLAR AND LAURA LIVESEY According to the Nielen Norman Group, you have 10 crucial

More information

Supervised Information-Theoretic Competitive Learning by Cost-Sensitive Information Maximization

Supervised Information-Theoretic Competitive Learning by Cost-Sensitive Information Maximization BIC, 9 Aug- ept upervied Information-Theoretic Competitive Learning by Cot-enitive Information Maximization Ryotaro Kamimura Information cience Laboratory, Tokai Univerity, 7 Kitakaname Hiratuka Kanagawa

More information

Identification of Image Noise Sources in Digital Scanner Evaluation

Identification of Image Noise Sources in Digital Scanner Evaluation Identification of Image Noie Source in Digital Scanner Evaluation Peter D. Burn and Don William Eatman Kodak Company, ocheter, NY USA 4650-95 ABSTACT For digital image acquiition ytem, analyi of image

More information

Gemini. The errors from the servo system are considered as the superposition of three things:

Gemini. The errors from the servo system are considered as the superposition of three things: Gemini Mount Control Sytem Report Prediction Of Servo Error Uing Simulink Model Gemini 9 July 1996 MCSJDW (Iue 3) - Decribe the proce of etimating the performance of the main axi ervo uing the non-linear

More information

Sloppy Addition and Multiplication

Sloppy Addition and Multiplication Sloppy Addition and Multiplication IMM-Technical Report-2011-14 Alberto Nannarelli Dept. Informatic and Mathematical Modelling Technical Univerity of Denmark Kongen Lyngby, Denmark Email: an@imm.dtu.dk

More information

Revisiting Cross-channel Information Transfer for Chromatic Aberration Correction

Revisiting Cross-channel Information Transfer for Chromatic Aberration Correction Reviiting Cro-channel Information Tranfer for Chromatic Aberration Correction Tiancheng Sun, Yifan Peng 3, Wolfgang Heidrich,3 King Abdullah Univerity of Science and Technology, Thuwal, Saudi Arabia IIIS,

More information

HEURISTIC APPROACHES TO SOLVE THE U-SHAPED LINE BALANCING PROBLEM AUGMENTED BY GENETIC ALGORITHMS. Ulises Martinez William S. Duff

HEURISTIC APPROACHES TO SOLVE THE U-SHAPED LINE BALANCING PROBLEM AUGMENTED BY GENETIC ALGORITHMS. Ulises Martinez William S. Duff Proceeding of the 200 Sytem and Information Engineering Deign Sympoium Matthew H. Jone, Stephen D. Pate, and Barbara E. Tawney, ed. HEURISTIC APPROACHES TO SOLVE THE U-SHAPED LINE BALANCING PROBLEM AUGMENTED

More information

Resonant amplifier L A B O R A T O R Y O F L I N E A R C I R C U I T S. Marek Wójcikowski English version prepared by Wiesław Kordalski

Resonant amplifier L A B O R A T O R Y O F L I N E A R C I R C U I T S. Marek Wójcikowski English version prepared by Wiesław Kordalski A B O R A T O R Y O F I N E A R I R U I T S Reonant amplifier 3 Marek Wójcikowki Englih verion prepared by Wieław Kordalki. Introduction Thi lab allow you to explore the baic characteritic of the reonant

More information

Family Edition. Components. Substitute Markers

Family Edition. Components. Substitute Markers Family Edition Component 2 Game Board Extenion (with additional pace on both ide) Round Counter Rooter 5 Begging Marker Game Board (with action pace) 37 Food Marker 7 5 Food Marker 4 Starting Houe 2 Wood/Clay

More information

Control of Electromechanical Systems using Sliding Mode Techniques

Control of Electromechanical Systems using Sliding Mode Techniques Proceeding of the 44th IEEE Conference on Deciion and Control, and the European Control Conference 25 Seville, Spain, December 2-5, 25 MoC7. Control of Electromechanical Sytem uing Sliding Mode Technique

More information

Midterm: In Perspective

Midterm: In Perspective Undertanding and Meauring Speedup Lat Time» Midterm Exam Today» Midterm Summary» Definition of Speedup» Meauring Speedup Reminder/Announcement» New Homework #3 will be out oon (tomorrow?)» Midterm Exam

More information

CIRCULAR SYNTHETIC APERTURE SONAR WITHOUT A BEACON

CIRCULAR SYNTHETIC APERTURE SONAR WITHOUT A BEACON CIRCULAR SYNTHETIC APERTURE SONAR WITHOUT A BEACON Hayden J Callow a, Roy E Hanen a, Stig A Synne a, Tortein O Sæbø a a Norwegian Defence Reearch Etablihment, P O Box 25, NO-2027 Kjeller, Norway Contact

More information

COST OF TRANSMISSION TRANSACTIONS: Comparison and Discussion of Used Methods

COST OF TRANSMISSION TRANSACTIONS: Comparison and Discussion of Used Methods INTERNATIONAL CONFERENCE ON RENEWABLE ENERGY AND POWER QUALITY (ICREPQ 03) COST OF TRANSMISSION TRANSACTIONS: Comparion and Dicuion of Ued Method Judite Ferreira 1, Zita Vale 2, A. Almeida Vale 3 and Ricardo

More information

A Faster and Accurate Method for Spectral Testing Applicable to Noncoherent Data

A Faster and Accurate Method for Spectral Testing Applicable to Noncoherent Data A Fater and Accurate ethod for Spectral Teting Applicable to Noncoherent Data inhun Wu 1,2, Degang Chen 2, Guican Chen 1 1 School of Electronic and Information Engineering Xi an Jiaotong Univerity, Xi

More information

AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS

AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS Alion de Oliveira Morae (1), Joé Antonio Azevedo Duarte (1), Sergio Fugivara (1) (1) Comando-Geral de Tecnologia Aeroepacial,

More information

Frequency Calibration of A/D Converter in Software GPS Receivers

Frequency Calibration of A/D Converter in Software GPS Receivers Frequency Calibration of A/D Converter in Software GPS Receiver L. L. Liou, D. M. Lin, J. B. Tui J. Schamu Senor Directorate Air Force Reearch Laboratory Abtract--- Thi paper preent a oftware-baed method

More information

Basic Study of Radial Distributions of Electromagnetic Vibration and Noise in Three-Phase Squirrel-Cage Induction Motor under Load Conditions

Basic Study of Radial Distributions of Electromagnetic Vibration and Noise in Three-Phase Squirrel-Cage Induction Motor under Load Conditions http://dx.doi.org/0.42/jicem.203.2.2.54 54 Journal of International Conference on Electrical Machine and Sytem Vol. 2, No. 2, pp. 54 ~58, 203 Baic Study of Radial Ditribution of Electromagnetic Vibration

More information

Design of Control for Battery Storage Unit Converter

Design of Control for Battery Storage Unit Converter POSER 2016, PRAGUE MAY 24 1 Deign of Control for Battery Storage Unit Converter Martin GALÁD 1 1 Dept. of Mechatronic and Electronic, Univerity of Žilina, Univezitná 1, 010 26 Žilina, Slovakia martin.galad@fel.uniza.k

More information

Adaptive Space/Frequency Processing for Distributed Aperture Radars

Adaptive Space/Frequency Processing for Distributed Aperture Radars Adaptive Space/Frequency Proceing for Ditributed Aperture Radar Raviraj Adve a, Richard Schneible b, Robert McMillan c a Univerity of Toronto Department of Electrical and Computer Engineering 10 King College

More information

Design Calculation and Performance Testing of Heating Coil in Induction Surface Hardening Machine

Design Calculation and Performance Testing of Heating Coil in Induction Surface Hardening Machine Vol:, No:6, 008 Deign Calculation and Performance Teting of Heating Coil in Induction Surface Hardening Machine Soe Sandar Aung, Han Phyo Wai, and Nyein Nyein Soe International Science Index, Energy and

More information

Active Harmonic Elimination in Multilevel Converters Using FPGA Control

Active Harmonic Elimination in Multilevel Converters Using FPGA Control Active Harmonic Elimination in Multilevel Converter Uing FPGA Control Zhong Du, Leon M. Tolbert, John N. Chiaon Electrical and Computer Engineering The Univerity of Tenneee Knoxville, TN 7996- E-mail:

More information

MEASUREMENT OF STRESS WITH AC MAGNETIC BRIDGES. Otto H. Zinke Department of Physics University of Arkansas Fayetteville, AR 72701

MEASUREMENT OF STRESS WITH AC MAGNETIC BRIDGES. Otto H. Zinke Department of Physics University of Arkansas Fayetteville, AR 72701 MEASUREMENT OF STRESS WTH AC MAGNETC BRDGES Otto H Zinke Department of Phyic Univerity of Arkana Fayetteville, AR 7271 William F Schmidt Department of Mechanical Engineering Univerity of Arkana Fayetteville,

More information

Self-Programmable PID Compensator for Digitally Controlled SMPS

Self-Programmable PID Compensator for Digitally Controlled SMPS 6 IEEE COMPEL Workhop, Renelaer Polytechnic Intitute, Troy, NY, USA, July 16-19, 6 Self-Programmable PID Compenator for Digitally Controlled SMPS Zhenyu Zhao and Alekandar Prodi Univerity of Toronto Toronto,

More information

A Simple DSP Laboratory Project for Teaching Real-Time Signal Sampling Rate Conversions

A Simple DSP Laboratory Project for Teaching Real-Time Signal Sampling Rate Conversions A Simple DSP Laboratory Project for Teaching Real-Time Signal Sampling Rate Converion by Li Tan, Ph.D. lizhetan@pnc.edu Department of ECET Purdue Univerity North Central Wetville, Indiana Jean Jiang, Ph.D.

More information

Design Calculation and Performance Testing of Heating Coil in Induction Surface Hardening Machine

Design Calculation and Performance Testing of Heating Coil in Induction Surface Hardening Machine Deign Calculation and Performance Teting of Heating Coil in Induction Surface Hardening Machine Soe Sandar Aung, Han Phyo Wai, and Nyein Nyein Soe Abtract The induction hardening machine are utilized in

More information

A Two-Stage Optimization PID Algorithm

A Two-Stage Optimization PID Algorithm PID' Brecia (Italy), March 8-3, ThB. A Two-Stage Optimization PID Algorithm Gíli Herjólfon Anna Soffía Haukdóttir Sven Þ. Sigurðon Department of Electrical and Computer Engineering,Univerity of Iceland

More information

HIGH VOLTAGE DC-DC CONVERTER USING A SERIES STACKED TOPOLOGY

HIGH VOLTAGE DC-DC CONVERTER USING A SERIES STACKED TOPOLOGY HIGH VOLTAGE DC-DC CONVERTER USING A SERIES STACKED TOPOLOGY Author: P.D. van Rhyn, Co Author: Prof. H. du T. Mouton Power Electronic Group (PEG) Univerity of the Stellenboch Tel / Fax: 21 88-322 e-mail:

More information

Voltage Analysis of Distribution Systems with DFIG Wind Turbines

Voltage Analysis of Distribution Systems with DFIG Wind Turbines 1 Voltage Analyi of Ditribution Sytem with DFIG Wind Turbine Baohua Dong, Sohrab Agarpoor, and Wei Qiao Department of Electrical Engineering Univerity of Nebraka Lincoln Lincoln, Nebraka 68588-0511, USA

More information

Published in: Proceedings of the 26th European Solid-State Circuits Conference, 2000, ESSCIRC '00, September 2000, Stockholm, Sweden

Published in: Proceedings of the 26th European Solid-State Circuits Conference, 2000, ESSCIRC '00, September 2000, Stockholm, Sweden Uing capacitive cro-coupling technique in RF low noie amplifier and down-converion mixer deign Zhuo, Wei; Embabi, S.; Pineda de Gyvez, J.; Sanchez-Sinencio, E. Publihed in: Proceeding of the 6th European

More information

A New Technique to TEC Regional Modeling using a Neural Network.

A New Technique to TEC Regional Modeling using a Neural Network. A New Technique to TEC Regional Modeling uing a Neural Network. Rodrigo F. Leandro Geodetic Reearch Laboratory, Department of Geodey and Geomatic Engineering, Univerity of New Brunwick, Fredericton, Canada

More information

NOISE BARRIERS CERC 1. INTRODUCTION

NOISE BARRIERS CERC 1. INTRODUCTION Augut 217 P33/1B/17 NOISE BARRIERS CERC In thi document ADMS refer to ADMS-Road 4.1, ADMS-Urban 4.1 and ADMS-Airport 4.1. Where information refer to a ubet of the lited model, the model name i given in

More information

IE 361 Module 6. Gauge R&R Studies Part 2: Two-Way ANOVA and Corresponding Estimates for R&R Studies

IE 361 Module 6. Gauge R&R Studies Part 2: Two-Way ANOVA and Corresponding Estimates for R&R Studies IE 361 Module 6 Gauge R&R Studie Part 2: Two-Way ANOVA and Correponding Etimate for R&R Studie Reading: Section 2.2 Statitical Quality Aurance for Engineer (Section 2.4 of Revied SQAME) Prof. Steve Vardeman

More information

1 ft 1 ft border tile

1 ft 1 ft border tile Application 1. a. How many 1-foot-quare border tile do you need to urround a pool that i 10 feet long and 5 feet wide? b. Write an equation for the number of border tile needed to urround a pool L feet

More information

MODAL ANALYSIS OF A BEAM WITH CLOSELY SPACED MODE SHAPES

MODAL ANALYSIS OF A BEAM WITH CLOSELY SPACED MODE SHAPES ME 164 Senior Captone Deign The Cooper Union Spring 2011 MODAL ANALYSIS O A BEAM WITH CLOSELY SPACED MODE SHAPES Eglind Myftiu The Cooper Union New York City, NY, USA ABSTRACT Thi paper invetigate the

More information

Observational Uncertainty in Plan Recognition Among Interacting. Robots. Marcus J. Huber. Edmund H. Durfee

Observational Uncertainty in Plan Recognition Among Interacting. Robots. Marcus J. Huber. Edmund H. Durfee Obervational Uncertainty in Plan Recognition Among Interacting Robot Marcu J. Huber Edmund H. Durfee Ditributed Intelligent Agent Group (DIAG) Articial Intelligence Laboratory The Univerity of Michigan

More information

Produced in cooperation with. Revision: May 26, Overview

Produced in cooperation with. Revision: May 26, Overview Lab Aignment 6: Tranfer Function Analyi Reviion: May 6, 007 Produced in cooperation with www.digilentinc.com Overview In thi lab, we will employ tranfer function to determine the frequency repone and tranient

More information

e-motion! LabQuest OBJECTIVES MATERIALS PROCEDURE Part I Creating Straight-Line Graphs Such as M, N, and W

e-motion! LabQuest OBJECTIVES MATERIALS PROCEDURE Part I Creating Straight-Line Graphs Such as M, N, and W e-motion! LabQuet 21 Have you ever wondered how autoatic door at grocery tore know when to open? There i a enor over the door that work iilarly to Motion Detector. Motion Detector end out ound wave that

More information

Comm 502: Communication Theory. Lecture 5. Intersymbol Interference FDM TDM

Comm 502: Communication Theory. Lecture 5. Intersymbol Interference FDM TDM Lecture 5 Interymbol Interference FDM TDM 1 Time Limited Waveform Time-Limited Signal = Frequency Unlimited Spectrum Square Pule i a Time-Limited Signal Fourier Tranform 0 T S -3/T S -2/T S -1/T S 0 1/T

More information

(a) frequency (b) mode (c) histogram (d) standard deviation (e) All the above measure

(a) frequency (b) mode (c) histogram (d) standard deviation (e) All the above measure MT143 Introductory Statitic I Exercie on Exam 1 Topic Exam 1 will ocu on chapter 2 rom the textbook. Exam will be cloed book but you can have one page o note. There i no guarantee that thee exercie will

More information

Deterministic Deployment for Wireless Image Sensor Nodes

Deterministic Deployment for Wireless Image Sensor Nodes Send Order for Reprint to reprint@benthamcience.ae 668 The Open Electrical & Electronic Engineering Journal, 04, 8, 668-674 Determinitic Deployment for Wirele Image Senor Node Open Acce Junguo Zhang *,

More information

STRUCTURAL SEMI-ACTIVE CONTROL DEVICE

STRUCTURAL SEMI-ACTIVE CONTROL DEVICE STRUCTURAL SEMI-ACTIVE CONTROL DEVICE Ming-Hiang SHIH SUMMARY Method for vibration reduction of tructure under dynamic excitation uch a wind and earthquake were generally claified into active control and

More information

A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES

A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES Jame D. Huff John C. Mantovani Carl W. Sirle The Howland Company, Inc. 4540 Atwater

More information

Hardware-in-the-loop tuning of a feedback controller for a buck converter using a GA

Hardware-in-the-loop tuning of a feedback controller for a buck converter using a GA SPEEDAM 8 International Sympoium on Power Electronic, Electrical Drive, Automation and Motion Hardware-in-the-loop tuning of a feedback controller for a buck converter uing a GA Mr K. D. Wilkie, Dr M.

More information

Making Use Of What You Don t See: Negative Information In Markov Localization

Making Use Of What You Don t See: Negative Information In Markov Localization Making Ue Of What You Don t See: Negative Information In Markov Localization Jan Hoffmann, Michael Spranger, Daniel Göhring, and Matthia Jüngel Department of Computer Science Artificial Intelligence Laboratory

More information

ISO Assistive products for blind and visionimpaired persons Tactile walking surface indicators

ISO Assistive products for blind and visionimpaired persons Tactile walking surface indicators Provläningexemplar / Preview INTERNATIONAL STANDARD ISO 23599 Firt edition 2012-03-01 Aitive product for blind and viionimpaired peron Tactile walking urface indicator Produit d aitance pour peronne aveugle

More information

Point-to-point radio link variation at E-band and its effect on antenna design Al-Rawi, A.N.H.; Dubok, A.; Herben, M.H.A.J.; Smolders, A.B.

Point-to-point radio link variation at E-band and its effect on antenna design Al-Rawi, A.N.H.; Dubok, A.; Herben, M.H.A.J.; Smolders, A.B. Point-to-point radio link variation at E-band and it effect on antenna deign Al-Rawi, A.N.H.; Dubok, A.; Herben, M.H.A.J.; Smolder, A.B. Publihed in: PIERS 215 Prague Publihed: 1/1/215 Document Verion

More information

Differential GPS supported navigation for a mobile robot

Differential GPS supported navigation for a mobile robot Differential GPS upported navigation for a mobile robot Jakob Raible, Michael Blaich, Oliver Bittel HTWG Kontanz - Univerity of Applied Science, Department of Computer Science, Brauneggertraße 55, D-78462

More information

e-motion! Evaluation copy

e-motion! Evaluation copy e-motion! Coputer 21 Have you ever wondered how autoatic door at grocery tore know when to open? There i a enor over the door that work iilarly to Go! Motion. Go! Motion end out ound wave that reflect

More information

Power Conversion Efficiency of Airborne Parametric Array

Power Conversion Efficiency of Airborne Parametric Array Power Converion Efficiency of Airborne Parametric Array JIANFENG CHEN Laboratorie for Information Technology, Heng Mui Keng Terrace, Singapore 963 http://www.lit.a-tar.edu.g Abtract: - In thi paper the

More information

International Journal of Engineering Research & Technology (IJERT) ISSN: Vol. 1 Issue 6, August

International Journal of Engineering Research & Technology (IJERT) ISSN: Vol. 1 Issue 6, August ISSN: 2278-08 Vol. Iue 6, Augut - 202 The Turbo Code and an Efficient Decoder Implementation uing MAP Algorithm for Software Defined Radio Mr Rupeh Singh (Principal), Dr. Nidhi Singh (Aociate Profeor)

More information

A moving sound source localization method based on TDOA

A moving sound source localization method based on TDOA A moving ound ource localization method baed on TDOA Feng MIAO; Diange YANG ; Ruia WANG; Junie WEN; Ziteng WANG; Xiaomin LIAN Tinghua Univerity, China ABSTRACT The Time Difference of Arrival (TDOA) method

More information

Optimal Control for Single-Phase Brushless DC Motor with Hall Sensor

Optimal Control for Single-Phase Brushless DC Motor with Hall Sensor Reearch Journal of Applied Science, Engineering and Technology 5(4): 87-92, 23 ISSN: 24-7459; e-issn: 24-7467 Maxwell Scientific Organization, 23 Submitted: June 22, 22 Accepted: Augut 7, 22 Publihed:

More information

Available online at ScienceDirect. Procedia Technology 17 (2014 )

Available online at  ScienceDirect. Procedia Technology 17 (2014 ) Available online at www.ciencedirect.com ScienceDirect Procedia Technology 17 (014 ) 791 798 Conference on Electronic, Telecommunication and Computer CETC 013 DC-DC buck converter with reduced impact Miguel

More information

New Resonance Type Fault Current Limiter

New Resonance Type Fault Current Limiter New Reonance Type Fault Current imiter Mehrdad Tarafdar Hagh 1, Member, IEEE, Seyed Behzad Naderi 2 and Mehdi Jafari 2, Student Member, IEEE 1 Mechatronic Center of Excellence, Univerity of Tabriz, Tabriz,

More information

Chapter Introduction

Chapter Introduction Chapter-6 Performance Analyi of Cuk Converter uing Optimal Controller 6.1 Introduction In thi chapter two control trategie Proportional Integral controller and Linear Quadratic Regulator for a non-iolated

More information

PERFORMANCE ASSESSMENT OF PID CONTROLLERS

PERFORMANCE ASSESSMENT OF PID CONTROLLERS PERFORMANCE ASSESSMENT OF PID CONTROLLERS W. Tan, H. J. Marquez, and T. Chen Abtract: Criteria baed on diturbance rejection and ytem robutne are propoed to ae the performance of PID controller. The robutne

More information

Time-Domain Coupling to a Device on Printed Circuit Board Inside a Cavity. Chatrpol Lertsirimit, David R. Jackson and Donald R.

Time-Domain Coupling to a Device on Printed Circuit Board Inside a Cavity. Chatrpol Lertsirimit, David R. Jackson and Donald R. Time-Domain Coupling to a Device on Printed Circuit Board Inide a Cavity Chatrpol Lertirimit, David R. Jackon and Donald R. Wilton Applied Electromagnetic Laboratory Department of Electrical Engineering,

More information

Regarding the Load Capacity of the Cosinus Slide Profile

Regarding the Load Capacity of the Cosinus Slide Profile Page 1 Regarding the Load Capacity of the Coinu Slide Profile Stefan Kordt and Jen Peirick Mechanim of Action of Shear Force Tranfer With common joint in concrete indutrial flooring, the load tranfer,

More information

AN INTERACTIVE DESIGN OF THE WINDING LAYOUT IN PERMANENT MAGNET MACHINES

AN INTERACTIVE DESIGN OF THE WINDING LAYOUT IN PERMANENT MAGNET MACHINES AN INTERACTIVE DESIGN OF THE WINDING LAYOUT IN PERMANENT MAGNET MACHINES CHANG-CHOU HWANG 1, CHENG-TSUNG LIU 2, HSING-CHENG CHANG 3 Key word: PM machine, Winding layout, CAD program, FEA. Thi paper preent

More information

ELEC353 Practice Problem Set #6

ELEC353 Practice Problem Set #6 EEC353 Practice Problem Set #6. The value of load impedance mut be found by meaurement, at 200 MHz. An engineer meaure the tanding-wave pattern a hown in the figure above. The figure how the amplitude

More information

Phase-Locked Loops (PLL)

Phase-Locked Loops (PLL) Phae-Locked Loop (PLL) Recommended Text: Gray, P.R. & Meyer. R.G., Analyi and Deign of Analog Integrated Circuit (3 rd Edition), Wiley (992) pp. 68-698 Introduction The phae-locked loop concept wa firt

More information

Experiment 8: Active Filters October 31, 2005

Experiment 8: Active Filters October 31, 2005 Experiment 8: Active Filter October 3, In power circuit filter are implemented with ductor and capacitor to obta the deired filter characteritic. In tegrated electronic circuit, however, it ha not been

More information

PREDICTION AND MEASUREMENT OF RADIATED EMISSIONS BASED ON EMPIRICAL TIME DOMAIN CONDUCTED MEASUREMENTS

PREDICTION AND MEASUREMENT OF RADIATED EMISSIONS BASED ON EMPIRICAL TIME DOMAIN CONDUCTED MEASUREMENTS PREDICTION AND MEASUREMENT OF RADIATED EMISSIONS BASED ON EMPIRICAL TIME DOMAIN CONDUCTED MEASUREMENTS by LARRY FREEMAN B.S.E.C.E, The Ohio State Univerity A thei ubmitted in partial fulfillment of the

More information

Position Control of a Large Antenna System

Position Control of a Large Antenna System Poition Control of a Large Antenna Sytem uldip S. Rattan Department of Electrical Engineering Wright State Univerity Dayton, OH 45435 krattan@c.wright.edu ABSTRACT Thi report decribe the deign of a poition

More information

Ephemeris Type A Fault Analysis and Mitigation for LAAS

Ephemeris Type A Fault Analysis and Mitigation for LAAS Ephemeri Type A Fault Analyi and Mitigation for LAAS Haochen Tang, Sam Pullen, and Per Enge, Stanford Univerity Livio Gratton and Bori Pervan, Illinoi Intitute of Technology Mat Brenner, Joe Scheitlin,

More information

DESIGN OF SECOND ORDER SIGMA-DELTA MODULATOR FOR AUDIO APPLICATIONS

DESIGN OF SECOND ORDER SIGMA-DELTA MODULATOR FOR AUDIO APPLICATIONS DESIGN OF SECOND ORDER SIGMA-DELTA MODULATOR FOR AUDIO APPLICATIONS 1 DHANABAL R, 2 BHARATHI V, 3 NAAMATHEERTHAM R SAMHITHA, 4 G.SRI CHANDRAKIRAN, 5 SAI PRAMOD KOLLI 1 Aitant Profeor (Senior Grade), VLSI

More information

(12) Patent Application Publication (10) Pub. No.: US 2009/ A1

(12) Patent Application Publication (10) Pub. No.: US 2009/ A1 (19) United State US 200903.22462A1 (12) Patent Application Publication (10) Pub. No.: US 2009/0322462 A1 Lindholm et al. (43) Pub. Date: Dec. 31, 2009 (54) FOIL WINDING PULSE TRANSFORMER (76) Inventor:

More information

Before the beginning of the Q wave At the top of the R wave After the end of the S wave

Before the beginning of the Q wave At the top of the R wave After the end of the S wave 334 AcqKnowledge 4 Software Guide Detect and Claify Heartbeat Thi robut QRS detector i tuned for human ECG Lead II ignal. It attempt to locate QRS complexe and place an event near the center of each QRS

More information

SETTING UP A GRID SIMULATOR A. Notholt 1, D. Coll-Mayor 2, A. Engler 1

SETTING UP A GRID SIMULATOR A. Notholt 1, D. Coll-Mayor 2, A. Engler 1 SETTING U A GRID SIMULATOR A. Notholt, D. CollMayor 2, A. Engler Intitut für Solare Energieverorgungtechnik (ISET). Königtor 9. D349 Kael anotholt@iet.unikael.de 2 Department of hyic. Univerity of Balearic

More information

M.Sc.(Eng) in building services MEBS Utilities services Department of Electrical & Electronic Engineering University of Hong Kong

M.Sc.(Eng) in building services MEBS Utilities services Department of Electrical & Electronic Engineering University of Hong Kong MEBS 6000 010 Utilitie ervice Induction Motor peed control Not long ago, induction machine were ued in application for which adjutable peed i not ruired. Before the power electronic era, and the pule width

More information

Comparison Study in Various Controllers in Single-Phase Inverters

Comparison Study in Various Controllers in Single-Phase Inverters Proceeding of 2010 IEEE Student Conference on Reearch and Development (SCOReD 2010), 13-14 Dec 2010, Putrajaya, Malayia Comparion Study in ariou Controller in Single-Phae Inverter Shamul Aizam Zulkifli

More information

Final Report: Design and Implementation of a Binary Neural Network

Final Report: Design and Implementation of a Binary Neural Network Smith & Maitra 1 Final Report: Deign and Implementation of a Binary Neural Network Daniel Smith & Shamik Maitra E158 Intro to CMOS VLSI Deign Prof. Harri Smith & Maitra 2 Background: In a typical neural

More information

Massachusetts Institute of Technology Haystack Observatory WESTFORD, MASSACHUSETTS DATE 07/15/2009

Massachusetts Institute of Technology Haystack Observatory WESTFORD, MASSACHUSETTS DATE 07/15/2009 BBD Memo #033 Maachuett Intitute of Technolog Hatack Obervator WESTFORD, MASSACHUSETTS 0886 DATE 07/5/2009 To: Broadband Development Group From: C. J. Beaudoin Subject: Holographic Proceing and Conideration

More information

CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER

CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER 16 CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER 2.1 INTRODUCTION Indutrial application have created a greater demand for the accurate dynamic control of motor. The control of DC machine are

More information

Modulation Extension Control for Multilevel Converters Using Triplen Harmonic Injection with Low Switching Frequency

Modulation Extension Control for Multilevel Converters Using Triplen Harmonic Injection with Low Switching Frequency odulation Extenion Control for ultilevel Converter Uing Triplen Harmonic Injection with ow Switching Frequency Zhong Du, eon. Tolbert, John N. Chiaon Electrical and Computer Engineering The Univerity of

More information

Interactive Machine Learning

Interactive Machine Learning Interactive Machine Learning Jerry Alan Fail, Dan R. Olen, Jr. Computer Science Department Brigham Young Univerity Provo, Utah 84602 {failj, olen}@c.byu.edu ABSTRACT Perceptual uer interface (PUI) are

More information

Instantaneous Cycle-Slip Detection and Repair of GPS Data Based on Doppler Measurement

Instantaneous Cycle-Slip Detection and Repair of GPS Data Based on Doppler Measurement Intantaneou Cycle-Slip Detection and Repair of GPS Data Baed on Doppler Meaurement Zhoufeng Ren, Liyan Li, Jie Zhong, and Minjian Zhao Abtract In GPS receiver, carrier phae meaurement can be ued to improve

More information

Tensile Capacity of U-bar Loop Connections with Precast Fiber Reinforced Dowels

Tensile Capacity of U-bar Loop Connections with Precast Fiber Reinforced Dowels Downloaded from orbit.dtu.dk on: Oct 15, 018 Tenile Capacity of U-bar Loop Connection with Precat Fiber Reinforced Dowel Sørenen, Jeper arrild; oang, Linh Cao; Oleen, John Forbe; Ficher, Gregor Publihed

More information

A simple low rate turbo-like code design for spread spectrum systems

A simple low rate turbo-like code design for spread spectrum systems 5 A imple low rate turbo-like code deign for pread pectrum ytem Durai Thirupathi and Keith M. Chugg Communication Science Intitute Dept. of Electrical Engineering Univerity of Southern California, Lo Angele

More information

Synthetic aperture radar raw signal simulator for both pulsed and FM-CW modes

Synthetic aperture radar raw signal simulator for both pulsed and FM-CW modes Computational Method and Experimental Meaurement XV 43 Synthetic aperture radar raw ignal imulator for both puled and FM-CW mode P. Serafi C. Lenik & A. Kawalec Intitute of adioelectronic, Military Univerity

More information

/09/$ IEEE 472

/09/$ IEEE 472 Bai Puruit for Robut Paive Acoutic Beamforming Ben Shapo and Chri Kreucher Integrity Application Incorporated 900 Victor Way, Suite 220 Ann Arbor, MI 48108 bhapo@integrity-app.com, ckreuche@umich.edu Abtract

More information

California State University, Bakersfield Computer & Electrical Engineering & Computer Science ECE 3220: Digital Design with VHDL Laboratory 6

California State University, Bakersfield Computer & Electrical Engineering & Computer Science ECE 3220: Digital Design with VHDL Laboratory 6 California State Univerity, Bakerfield Computer & Electrical Engineering & Computer Science ECE 322: Digital Deign with VHDL Laboratory 6 The purpoe of thi exercie i to examine arithmetic circuit that

More information

Observations on Windows

Observations on Windows Obervation on Window Window with low idelobe level have large tranition bandwidth'. Tranition bandwidth i inverely proportional to N for a given window. Indeed, the ratio of tranition width over idelobe

More information

A Feasibility Study on Frequency Domain ADC for Impulse-UWB Receivers

A Feasibility Study on Frequency Domain ADC for Impulse-UWB Receivers A Feaibility Study on Frequency Domain ADC for Impule-UWB Receiver Rajeh hirugnanam and Dong Sam Ha VV (Virginia ech VLSI for elecommunication Lab Department of Electrical and Computer Engineering Virginia

More information

Stability Analysis in a Cognitive Radio System with Cooperative Beamforming

Stability Analysis in a Cognitive Radio System with Cooperative Beamforming Stability Analyi in a Cognitive Radio Sytem with Cooperative Beamforming Mohammed Karmooe, Ahmed Sultan, Moutafa Youef Department of Electrical Engineering, Alexandria Univerity, Alexandria, Egypt Wirele

More information

A Flyback Converter Fed Multilevel Inverter for AC Drives

A Flyback Converter Fed Multilevel Inverter for AC Drives 2016 IJRET olume 2 Iue 4 Print IN: 2395-1990 Online IN : 2394-4099 Themed ection: Engineering and Technology A Flyback Converter Fed Multilevel Inverter for AC Drive ABTRACT Teenu Joe*, reepriya R EEE

More information

DIGITAL COMMUNICATION

DIGITAL COMMUNICATION DEPARTMENT OF ELECTRICAL &ELECTRONICS ENGINEERING DIGITAL COMMUNICATION Spring 2010 Yrd. Doç. Dr. Burak Kelleci OUTLINE Line Code Differential Encoding Regeneration, Decoding and Filtering Delta Modulation

More information

Method to Improve Range and Velocity Error Using De-interleaving and Frequency Interpolation for Automotive FMCW Radars

Method to Improve Range and Velocity Error Using De-interleaving and Frequency Interpolation for Automotive FMCW Radars International Journal o Signal Proceing, Image Proceing and Pattern Recognition Vol. 2, No. 2, June 2009 Method to Improve Range and Velocity Error Uing De-interleaving and Frequency Interpolation or Automotive

More information

Feedback Control Design of Off-line Flyback Converter

Feedback Control Design of Off-line Flyback Converter Application Note Edwin Wang AN7 Jun 24 Feedback Control Deign of Off-line Flyback Converter Abtract Controlling the feedback of off-line flyback converter ha often perplexed power engineer becaue it involve

More information

An analytic technique

An analytic technique From June 2010 High Frequency Electronic Copyright 2010 Summit Technical Media, C An Analytic and Graphical Method for NA Deign with Feedback By Alan Victor, Nitronex Corp., and Jayeh Nath, Aviat Network

More information