| Now that you have the top layer solved it is time to complete the second layer.
Your goal when finished with this step is to have the cube looking like this:
| |||||||||
| |||||||||
| This piece needs to be placed to the right of the red center piece. Below is a walkthrough of how to move this piece into place. The algorithm is D'_R'_D_R_D_F_D'_F'
| |||||||||
We start off by moving it to the Left side with D'. Then we bring down the piece where we want to go into the bottom layer by bringing the Right side down by moving R'. Now we move the red/blue piece back under the red center with D. This shifts our target position under the blue center and places the yellow/red/blue corner piece in the bottom right corner of the Right face. Next we rotate the Right face back up with R. As you can see the yellow/red/blue corner piece is now directly under where it belongs. The remaining 4 steps will accomplish 2 things, putting the corner back into place and bringing along the red/blue edge piece with it. First let's move the corner out of the way so we can move the Front face. We do this by moving D. Now we move the Front face F to bring the target corner position down to the bottom layer. We move the yellow/red/blue corner piece back into place with D', then move it back to the top layer with F'. | |||||||||
As stated above, there are only 3 scenarios. After rotating the piece under the center of the same color, you either need to move the piece up to the right of the center piece, up to the left of the center piece, or its already in the second layer but in the wrong position. The algorithm for the first scenario was given above. It is restated below along with the algorithm for the second scenario. In case of the third scenario, simply perform one of these algorithms to replace the improperly placed piece with one from the bottom layer. This will move that piece down from the second layer into the bottom layer and you can then apply the appropriate algorithm.
Here are the algorithms as shown in the java applet.
Continue using this methodology to place the remaining edge pieces into the second layer. Once finished you are ready to move on to Solving the Bottom Corners. | |||||||||













