hp
jblog
toc

A278328

2017-03-11, post № 162

mathematics, programming, Python, #2016, #decimal reverse, #difference, #integer, #OEIS, #On-Line Encyclopedia of Integer Sequences, #palindrome, #reverse, #sequence, #square

The On-Line Encyclopedia of Integer Sequences (also known by its acronym, OEIS) is a database hosting hundreds of thousands of — as the name implies — integer sequences. Yet, despite the massive number of entries, I contributed a new integer sequence, A278328.

A278328 describes numbers whose absolute difference to their decimal reverse are square. An example would be 𝟣𝟤 or 𝟤𝟣 (both are the decimal reverse to each other), since \left|12-21\right|=9 and 9=3^2.

Not a whole lot is known about the sequence [1], partly due to its definition only resulting in the sequence when using the decimal system, though it is known that there are infinitely many numbers with said property. Since there are infinitely many palindromes (numbers whose reverse is the number itself), \left|n-n\right|=0 and 0=0^2.

Due to there — to my knowledge — not being a direct formula for those numbers, I wrote a Python script to generate them. On the sequence’s page, I posted a program which endlessly spews them out, though I later wrote a Python two-liner, which only calculates those members of the sequence in the range from 𝟢 to 𝟫𝟪 (shown below entered in a Python shell).

>>> import math
>>> filter(lambda n:math.sqrt(abs(n-int(str(n)[::-1])))%1 == 0, range(99))
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 22, 23, 26, 32, 33, 34, 37, 40, 43, 44, 45, 48, 51, 54, 55, 56, 59, 62, 65, 66, 67, 73, 76, 77, 78, 84, 87, 88, 89, 90, 95, 98]

Maze Solving

2017-02-27, post № 161

programming, Python PIL, #amazing, #labyrinth, #Minotaur, #solver

Mazes have been a subject of human interest for thousands of years. The Greeks used them to trap a bull-man hybrid, the French built them to show how they could impose order on nature, and even nowadays people enjoy wandering around corn mazes.
The algorithmic art of using computers to solve mazes — and even to find the shortest path through a maze —, however, has only emerged in the last couple of decades.

I was inspired by a recent Computerphile video in which Michael Pound talks about implementing different path finding algorithms for use in maze solving. And as he used Python — one of my favourite languages out there [1] —, I thought I could give it a try and came up with this maze solver.

maze-solving_normal_solved_enlarged.png

The mazes given to the solver (through a .png file) have to have a specific form. The maze needs to have a border all around (painted black) with two holes at the top and bottom, marking the maze’s start and exit (all path pixels are white).
Then the solver — using PIL — reads in the maze file, determines start and exit and starts at the maze’s start, labelling each maze path according to its shortest distance to the start. After it has found the exit, it stops looking at the maze and traces its origins back from the exit, marking the path it goes along as the maze’s optimal solution (highlighted in red).
The different hues of blue indicate the tile’s distance to the start, the white tiles are tiles the solver did not even look at.The different shadings also reveal information about the maze. Mazes with only one solution tend to have sharp changes as there are parts of the maze separated by only one wall, yet separated by a huge walk distance through the maze. The one maze with multiple solutions (see upper right image below) — in contrast — has only gradual changes in hue.

To solve a 𝟦 megapixel maze, the solver takes around 𝟥 seconds, for a 𝟣𝟨 megapixel maze around 𝟣𝟦 seconds and for a 𝟤𝟤𝟧 megapixel maze around 𝟩 minutes and 𝟤𝟤 seconds.
Performance was measured on an Intel Core i7 (𝟦.𝟢𝟢 GHz).

All mazes shown were downloaded from Michael Pound’s mazesolving GitHub repository, which were mostly generated using Daedalus.

The solver’s source code is listed below, though you can also download the .py file.

maze-solving-1_perfect2k_solved.png
maze-solving-2_braid2k_solved.png
maze-solving-3_perfect4k_solved.png
maze-solving-4_perfect10k_solved.png
maze-solving-5_perfect15k_solved.png
Source code: maze-solving.py

4096

2017-02-25, post № 160

games, Java, programming, #2016, #clone, #exponents, #jar, #powers of two

4096 is a Java-based clone of the well-known web and mobile game 2048, which itself clones 1024 and is similiar to THREES. The naming trend is quite obvious, though note that 2^{12} is a power of two where the exponent is divisible by three, further connecting to the aforementioned game.

In the game, you are faced with a 𝟦 ⨉ 𝟦 matrix, containing powers of two. By swiping in the four cardinal directions (e. g. pressing the arrow keys), you shove all the non-empty cells to that side. When two equal powers of two collide, they fuse together, adding. Once you shoved, an empty tile pseudo-randomly transforms to either a two-tile (𝟫𝟢%) or a four-tile (𝟣𝟢%).
Your objective at first is to reach the tile 4096, though the real goal is to achieve the highest score. Your score is the sum of all the collisions you managed to cause.

To play 4096, you can either download the .jar file or review and compile the game for yourself, using the source code listed below.

Controls

  • Up, down, left or right arrow key shoves the tiles,
  • ‘Escape’ restarts the game upon a loss,
  • ‘F11’ toggles fullscreen.
4096-1.png
4096-3.png
4096-4.png
Source code: Main.java

Slitherlink Solver

2017-02-11, post № 159

programming, Python, #2016, #puzzle, #shell

Slitherlink is a neat puzzle in which you are presented with a number matrix and the goal is to draw one connected, not interlooping line in between the cells. The number in each cell determines exactly how many line segments must be drawn around each cell (𝟢, 𝟣, 𝟤 or 𝟥). When a cell does not contain any number, the number of line segments adjacent to this cell are unrestricted.

*  *  *  *  *  *          *--*  *  *--*--*
     2  1  3              |  | 2  1| 3   |
*  *  *  *  *  *          *  *--*  *--*  *
        2  2  2           |     | 2  2| 2|
*  *  *  *  *  *          *--*  *--*  *  *
     2              ->       | 2   |  |  |
*  *  *  *  *  *          *  *--*  *--*  *
  1  3  1     1             1  3| 1     1|
*  *  *  *  *  *          *--*--*  *--*  *
  3     2     3           | 3     2|  | 3|
*  *  *  *  *  *          *--*--*--*  *--*

A sample 5x5 Slitherlink with solution.

Slitherlink was invented by the Japanese publisher Nikoli in 1989. It has many other names than “Slitherlink”, yet I prefer this descriptive name. Imagining a snake slithering along the board, seeking to link up with itself is a bit charming.

As with most of these puzzles that have simple rules and are fairly easy to work out by hand — on small scales that is —, writing a solver for them can prove to be more difficult than one may expect.

The first solving strategy I tried out was to brute force the problem. Using the Slitherlink from above as an example, there would be 5\cdot 5=25 different cells with 2\cdot 5\cdot 5+5+5=60 line segments. With each line segment either being drawn or not, there are 2^{60}\approx 1.15\cdot 10^{18} different boards to check. With one board being checked per nanosecond the solver would take \frac{2^{60}}{10^9}\approx 1.15\cdot 10^9 seconds or 𝟥𝟨.𝟧𝟨 years. Brute force is definitely not a viable way to conquer Slitherlink.

After this harsh discovery, I needed a better way to approach solving a given Slitherlink puzzle. Doing some research, I even discovered that Slitherlink is an NP-complete problem (see this paper [1] by Stefan Herting), whereby it — assuming \text{P}\neq\text{NP} — is not even possible to write a solving algorithm which takes polynomial time.
However, solving small Slitherlink puzzles is fortunately possible in a reasonable time frame.

The strategy I used in the solver consists of pre-programmed rules — figured out by humans — which determine parts of the board based on special arrangements and enforcing the puzzle’s rules (such as that there must only be one line). Using those clues, the solver partly solves a given Slitherlink until there are no more known rules to advance. At that point the solver guesses for a given line segment to be either crossed (marking it cannot be drawn) or drawn, building a tree.
Conflicting attempts (where the solver wrongly guessed, then later — through applying the given rules — determines the attempt as flawed) are thrown away, only leaving possible solved scenarios. Because each Slitherlink has one unique solution, this process ultimately results in one surviving attempt, which then is checked for correctness and printed out as the solution.
A list of Slitherlink rules can be found in this Wikipedia article.

Using the above described method, my solver takes roughly 𝟢.𝟢𝟧 seconds on an Intel Core i7 (𝟦.𝟢𝟢 GHz) to solve the example 𝟧 ⨉ 𝟧 Slitherlink. A 𝟣𝟢 ⨉ 𝟣𝟢 Slitherlink takes around 𝟣.𝟨 seconds whereas it takes 𝟥𝟤 seconds to solve a 𝟣𝟧 ⨉ 𝟣𝟧 Slitherlink. The non-polynomial time is clearly recognisable. [2]

My solver best runs in a bash shell [3], as it uses ANSI escape sequences to give the solved line a vivid blue and is entirely written in Python as well as fully text-based. The source code is listed below.

Other people also have written solvers, including puzzle generators, such as kakuro-online or appspot. The latter even supports different polygons as the Slitherlink base.

Source code: slitherlink-solver.py

Double-Slit Experiment

2017-01-28, post № 158

ImageMagick, programming, Python PIL, #animation, #flight, #gif, #light, #physics

Light is a fascinating thing in our universe. We perceive it as color, warmth and vision. Yet it does things one may not expect it to do. One of the experiments that called for a better physical model of light was the double slit experiment. In this experiment, a laser is shone through two closely adjacent slits and projected on the screen behind. Using old physical models, one would expect to see one or maybe two specs of light on the screen, when in reality there appear alternating dark and bright spots.

To explain why this seemingly strange phenomenon is occurring, one can either see light as photons and comprehend that a photon presumably follows every possible path there is in the entire universe and then — through it being observed — randomly chooses one path and thus creates stripes (according to the theory of quantum mechanics) or one can see light as simply being a wave.

For more information on the double-slit experiment, I refer to this Wikipedia entry.

The animation shown below describes light as a wave. The green vectors represent the light wave’s phase at the points on the light beam, the yellow vector represents the addition of both of the slit’s light beam’s phase when hitting the screen and the red dots at the screen represent the light’s brightness at that point (defined by the yellow vector’s length).
To create the animation, Python and a Python module called PIL were used to create single frames which were then stitched together by ImageMagick to create an animated gif.

double-slit-experiment.gif
Source code: double-slit-experiment.gif

Mandelbrot Set II

2017-01-14, post № 157

Java, mathematics, programming, #compiled, #filled Julia set, #generalized filled Julia set, #generalized Mandelbrot set, #Julia, #speed increase, #viewer

Over a year ago, I published my first Mandelbrot Set viewer, a Python program using Pygame. Since then, I have published a rather short program highlighting errors that can occur when calculating the set (Mandelbrot Set Miscalculations).
Since my first viewer was written in Python, which is an interpreted programming language, and I wanted to make my viewer faster, I decided to write one in Java. I was hoping for a speed increase since Java is compiled and thus should run at higher speeds. I was not disappointed. The new Java-based viewer runs noticeably faster and additionally I added a lot of new features, all listed below.

Controls

  • Left-clicking and dragging draws a zoom frame, single left-clicking removes the frame,
  • Right-clicking (and optionally dragging) moves the zoom frame,
  • ‘Space’ zooms into the zoom frame,
  • ‘F1’ moves one step back the zoom history,
  • ‘F2’ shows the path a complex number at the cursor’s position follows when the function is iteratively applied,
  • ‘F3’ shows the \mathbb{R} and i\,\mathbb{R} axis,
  • ‘F4’ displays the current cursor’s corresponding complex number,
  • ‘F5’ toggles between showing and hiding the menu (text in the left upper corner describing the viewer’s functions and current states),
  • ‘F6’ increments the exponent (going from f_c(z)=z^2+c to f_c(z)=z^5+c in whole-number steps),
  • ‘F7’ toggles between the Mandelbrot set and the filled Julia set,
  • ‘F8’ toggles between previewing a small filled Julia set at the cursor’s position based upon the cursor’s complex number,
  • ‘F9’ completely resets the zoom and zoom history,
  • ‘F11’ (or ‘F’) toggles between fullscreen and windowed mode,
  • ‘F12’ quits the application,
  • ‘L’ increases the color depth (starting at 𝟤𝟧𝟨 and increasing in steps of 𝟤𝟧𝟨),
  • ‘Q’ saves the current image to disk.

To use this application, you can either trust me and download the .jar-file or view the source code listed below, verify it and compile the program yourself.
The program will start in fullscreen mode, to change to windowed mode, just press ‘F11’ (as listed above).

mandelbrot-set-ii-0_mandelbrot_tl-3.5555555555555554-2.0i_br3.5555555555555554+2.0i.png
mandelbrot-set-ii-1_julia_-0.5629629629629629+0.47777777777777786i_tl-3.5555555555555554-2.0i_br3.5555555555555554+2.0i.png
mandelbrot-set-ii-2_mandelbrot_tl-3.5555555555555554-2.0i_br3.5555555555555554+2.0i.png
mandelbrot-set-ii-3_mandelbrot_tl0.732913241572962-0.151610056431476i_br0.7334855905959307-0.15128791342783118i.png
mandelbrot-set-ii-4_julia_0.7332134267115711+0.1514433175990339i_tl-3.5555555555555554-2.0i_br3.5555555555555554+2.0i.png
Source code: Main.java
Extra assets: mandelbrot-set-ii-5_mandelbrot_tl-3.5555555555555554-2.0i_br3.5555555555555554+2.0i.png, mandelbrot-set-ii_extra_00.png, mandelbrot-set-ii_extra_01.png, mandelbrot-set-ii_extra_02.png, mandelbrot-set-ii_extra_03.png, mandelbrot-set-ii_extra_04.png, mandelbrot-set-ii_extra_05.png, mandelbrot-set-ii_extra_05_a-half.png, mandelbrot-set-ii_extra_06.png, mandelbrot-set-ii_extra_06_a-half.png, mandelbrot-set-ii_extra_07.png, mandelbrot-set-ii_extra_07_a-half.png, mandelbrot-set-ii_extra_08.png, mandelbrot-set-ii_extra_09.png, mandelbrot-set-ii_extra_10.png, mandelbrot-set-ii_extra_11_Fractal-at-25fe8ea8.png, mandelbrot-set-ii_extra_12_mandelbrot_tl-1.8-1.2i_br1.8+1.2i.png, mandelbrot-set-ii_extra_13_mandelbrot_tl-1.8-1.2i_br_1.8+1.2i.png, mandelbrot-set-ii_extra_14_julia_c-0.4800000000000002+0.6366666666666666i_tl-1.8-1.2i_br1.8+1.2i.png, mandelbrot-set-ii_extra_15_mandelbrot_tl0.05333333333333323-0.6333333333333333i_br0.3599999999999999-0.4622222222222222i.png, mandelbrot-set-ii_extra_21_julia_c-0.5266666666666668+0.4033333333333333i_tl-1.8-1.2i_br1.8+1.2i.png, mandelbrot-set-ii_extra_22_julia_c-0.5466666666666666+0.2844444444444445i_tl-2.1333333333333333-1.2i_br2.1333333333333333+1.2i.png, mandelbrot-set-ii_extra_23_julia_c-0.5466666666666666+0.2844444444444445i_tl0.8800000000000003-0.046666666666666634i_br1.1911111111111112+0.1266666666666667i.png, mandelbrot-set-ii_extra_24_mandelbrot_tl-0.2174531103962005-0.7228248243121531i_br-0.21745053052484012-0.7228231210961094i.png, mandelbrot-set-ii_extra_25_mandelbrot_tl-0.21745176527993842-0.7228241924663124i_br-0.21745173948122481-0.7228241754341519i.png, mandelbrot-set-ii_extra_26_mandelbrot_tl-3.5555555555555554-2.0i_br3.5555555555555554+2.0i.png, mandelbrot-set-ii_extra_27.png, mandelbrot-set-ii_extra_28.png

New Year

2016-12-31, post № 156

art, haiku, poetry, #2017, #Silvester

Aiming at the sky.
Stunningly empty vastness …
Sound of explosion.

Christmas

2016-12-24, post № 155

art, haiku, poetry, programming, Python, #ascii, #ascii art, #star tree, #tree, #xmas

Christmas tree gets chopped,
Excitement fills the people.
Forming winter mood.

         *         
        ***        
       *****       
      *******      
     *********     
    ***********    
   *************   
  ***************  
 ***************** 
       *****       
Jonathan Frech's blog; built 2024/08/31 22:59:44 CEST