• Welcome to the Speedsolving.com, home of the web's largest puzzle community!
    You are currently viewing our forum as a guest which gives you limited access to join discussions and access our other features.

    Registration is fast, simple and absolutely free so please, join our community of 40,000+ people from around the world today!

    If you are already a member, simply login to hide this message and begin participating in the community!

I made a puzzle

Angry_Mob

Member
Joined
Oct 21, 2018
Messages
49
Location
Canada
There are lots of 2d puzzles (like 15 puzzle and loopover) but almost none of them have pieces with orientations. That's why I made a 2d puzzle with pieces that twist!

Play it here: https://scratch.mit.edu/projects/320083945/

I don't know what to call it, so pls tell me what to call it.

It actually looks a lot like gripple, but it's different because this puzzle has orientations, and a 4x4 would have 9 axes, while gripple only has 5.

I have come up with a method to solve it, but I don't think it's very good so I want to see if anyone else can come up with something better. I might share it later though.

My PB is 24.42 in 33 moves. I guess that's a WR so yay (try to beat it though)

Don't use a mouse because it's super laggy, the keys you should press are shown on screen.

I made a notation so we can share algs, but I don't think it's super great because it doesn't translate at all to larger board sizes. I don't know if I should just use the letters you press to make it less confusing, but that still won't translate. idk what to do

Are the keys you have to press good? where else should I put them? Should I have a set for cw and a set for ccw or is holding space good? Tell me what you think.

For the number of states, I'm pretty sure it's (9! * 2^8) = 92,897,280 but correct me if I'm wrong. This means for any n x n you can find the number of states using ((n^2)! * 2^((n^2)-1). The reason I used 2^8 instead of 4^8 is that each piece only has 2 possible orientations for each position it's in, so that's kind of lit. I'm still not sure if I'm right though.

If you could rotate the whole board there would be 4 solved positions, (and 1/4th the number of states?) but you aren't allowed to do that.

It'd be cool to know what god's number is, but I have no idea how to make a solver, let alone an optimal one. There is a fairly low # of states though, so maybe someone else would be able to figure that out. My guess is ~11 but I don't have any evidence.

• 4x4 and 5x5 boards
• a hexagonal board would be so lit but I don't know how I would add it
• Ao5 and Ao12 sessions
• realtime reconstructions
• state codes so you can share scrambles with others
• build it in a better language lol
why is this so long
pls play and don't judge me for using a programming language for 10-year olds thx bye
 

WoowyBaby

Member
Joined
May 27, 2018
Messages
765
Location
Neptune
WCA
2018ISOM02
YouTube
Visit Channel
Really cool puzzle, good job! It's kinda nice it's on scratch too, I used to do stuff on scratch a few years ago.

By the way, what is your method of solving this?
I tried two methods but neither really worked: 1) Solve one row/column to restrict to 2-gen, 2) Orient to reduce to half turns only.
I'll keep trying to figure it out, and maybe even try to beat your record while I'm at it ;)
 

Angry_Mob

Member
Joined
Oct 21, 2018
Messages
49
Location
Canada
Really cool puzzle, good job! It's kinda nice it's on scratch too, I used to do stuff on scratch a few years ago.

By the way, what is your method of solving this?
I tried two methods but neither really worked: 1) Solve one row/column to restrict to 2-gen, 2) Orient to reduce to half turns only.
I'll keep trying to figure it out, and maybe even try to beat your record while I'm at it ;)

In my method, I solve the bottom layer, the top layer, then the middle layer. The reason I do this is that U' D' U D cycles the pieces in the middle layer. For each layer, I solve the corners first, then insert the edge by putting it directly in the middle then use a sledge. If the edge is stuck to the left or right during the top layer you can just use the 3-cycle to get it out.
I solve the middle layer by first permuting the pieces then orienting them. I permute them using a combination of the 3-cycle from before and U' R' U2' D' U D U R U2 which swaps only two pieces. Orienting the pieces is super easy. Since they are permuted, they can only be right-side-up (0) or upsidedown (2) (it's a law of the puzzle). And since the orientations must add up to a multiple of 4, you can only have 0, 2 or 4 pieces flipped (because the 2-swap alg flips A). To flip 2 pieces set up to U' R' U2' D' U D U R U R' U2' D' U D U R U2 (it's the 2-swap twice). To flip 4, set up to (U R U' R')x2.

I don't know if it's the best method there could be, but it's the only one I could figure out lol
 

xyzzy

Member
Joined
Dec 24, 2015
Messages
2,878
Oh nice, I coded something similar a while back too. People who know where my GitHub account is can find it there.

For the number of states, I'm pretty sure it's (9! * 2^8) = 92,897,280 but correct me if I'm wrong. This means for any n x n you can find the number of states using ((n^2)! * 2^((n^2)-1). The reason I used 2^8 instead of 4^8 is that each piece only has 2 possible orientations for each position it's in, so that's kind of lit. I'm still not sure if I'm right though.

Yup, this is right. Each piece can only be in two orientations based on where it is; the easiest way to think about this is to checkerboard the pieces and the underlying grid. If a piece is in a cell of a different colour, that means it moved an odd number of times, and hence must have rotated an odd number of times. There's also an overall orientation constraint (each move has a net rotation of zero).

---

Also, if I remember correctly, the optimal alg to swap two pieces (ignoring orientation) is (i k l i' l'). Very fast to execute. ;) I think I used some variant of Sune to orient the pieces.
 

Wish Lin

Member
Joined
Jun 18, 2019
Messages
673
Location
Taipei, Taiwan
WCA
2018LINW02
I am working on converting your stuff to HTML5. I believe this can be a great puzzle!!

Algs I find now:
(i)(i k l i' l')(i')(i k l i' l') --------- Flip A and E 180 degrees at their spot only.
 

Wish Lin

Member
Joined
Jun 18, 2019
Messages
673
Location
Taipei, Taiwan
WCA
2018LINW02
• 4x4 and 5x5 boards
• a hexagonal board would be so lit but I don't know how I would add it
• Ao5 and Ao12 sessions
• realtime reconstructions
• state codes so you can share scrambles with others
• build it in a better language lol
That started sound like a 356i! :D. Called it "Rubik's Clock Plus" Perhaps?

Maybe I can help accomplish some of the goals!
 

ch_ts

Member
Joined
Apr 25, 2008
Messages
251
I figured out a neat method for this puzzle. It's like ZZ in that orientation is done first and then permutation. I attached a pdf guide. I solved the two examples in the guide in 27 and 31 moves if I remember correctly so I'm sure it could be done shorter and faster with some practice and planning. It took over a minute to solve, even after planning out the orientation step on paper first, but hey they were my first solves.

Basically, it's orientation, solve C and G, then two-gen permutation using I and L. Check out the guide! Sorry for the bad hand-drawn graphics!
 

Attachments

  • angrymobpuzzle.pdf
    34.3 KB · Views: 10

xyzzy

Member
Joined
Dec 24, 2015
Messages
2,878
I figured out a neat method for this puzzle. It's like ZZ in that orientation is done first and then permutation. I attached a pdf guide. I solved the two examples in the guide in 27 and 31 moves if I remember correctly so I'm sure it could be done shorter and faster with some practice and planning. It took over a minute to solve, even after planning out the orientation step on paper first, but hey they were my first solves.

Basically, it's orientation, solve C and G, then two-gen permutation using I and L. Check out the guide! Sorry for the bad hand-drawn graphics!

orient-first stronk

(I wouldn't be able to plan orientation in my head, honestly. It's easier to do it in code. :) )
The solver uses a two-phase algorithm (4×4 is too large to do in one phase in a web browser), with the first phase reducing to half turns and the second phase solving using only half turns. (Half-turn redux = all pieces oriented; all pieces in the cell of the correct parity; even permutation parity of all pieces.) I don't think half-turn redux can be meaningfully adapted into a human method, though; 3-cycles take a lot of moves to solve after reduction, so trying to solve the pieces incrementally post-reduction will lead to very ugly solutions. Computers have it easy since they can just brute-force a direct solution.
 
Last edited:

White KB

Premium Member
Joined
Oct 3, 2017
Messages
1,198
Location
Putting Runza on the map since 2022
WCA
2019BRUC01
SS Competition Results
YouTube
Visit Channel
There are lots of 2d puzzles (like 15 puzzle and loopover) but almost none of them have pieces with orientations. That's why I made a 2d puzzle with pieces that twist!

Play it here: https://scratch.mit.edu/projects/320083945/

I don't know what to call it, so pls tell me what to call it.

It actually looks a lot like gripple, but it's different because this puzzle has orientations, and a 4x4 would have 9 axes, while gripple only has 5.

I have come up with a method to solve it, but I don't think it's very good so I want to see if anyone else can come up with something better. I might share it later though.

My PB is 24.42 in 33 moves. I guess that's a WR so yay (try to beat it though)

Don't use a mouse because it's super laggy, the keys you should press are shown on screen.

I made a notation so we can share algs, but I don't think it's super great because it doesn't translate at all to larger board sizes. I don't know if I should just use the letters you press to make it less confusing, but that still won't translate. idk what to do

Are the keys you have to press good? where else should I put them? Should I have a set for cw and a set for ccw or is holding space good? Tell me what you think.

For the number of states, I'm pretty sure it's (9! * 2^8) = 92,897,280 but correct me if I'm wrong. This means for any n x n you can find the number of states using ((n^2)! * 2^((n^2)-1). The reason I used 2^8 instead of 4^8 is that each piece only has 2 possible orientations for each position it's in, so that's kind of lit. I'm still not sure if I'm right though.

If you could rotate the whole board there would be 4 solved positions, (and 1/4th the number of states?) but you aren't allowed to do that.

It'd be cool to know what god's number is, but I have no idea how to make a solver, let alone an optimal one. There is a fairly low # of states though, so maybe someone else would be able to figure that out. My guess is ~11 but I don't have any evidence.

• 4x4 and 5x5 boards
• a hexagonal board would be so lit but I don't know how I would add it
• Ao5 and Ao12 sessions
• realtime reconstructions
• state codes so you can share scrambles with others
• build it in a better language lol
why is this so long
pls play and don't judge me for using a programming language for 10-year olds thx bye
Maybe you should call it the Geranium Clock. It has a nice ring to it, and functions the same way as a geranium puzzle, except way less complicated, more squared than the circular design of the geranium puzzle, and with only 4 'squares'
 
Top