LOGO Challenge 7 - More Stars and Squares

Can you use LOGO to create a systematic reproduction of a basic design? An introduction to variables in a familiar setting.
Exploring and noticing Working systematically Conjecturing and generalising Visualising and representing Reasoning, convincing and proving
Being curious Being resourceful Being resilient Being collaborative


Taking squares as a theme, it would be remiss not to revisit a familiar idea :
Image
LOGO Challenge 7 - More Stars and Squares

And a new idea:

TO SQ :N

REPEAT 4 [ FD :N RT 90]

END

Then type SQ 50 and see what happens. What about SQ 30?

Now can you write another procedure to produce this ring of squares? It might start:

TO RINGSQ :N

REPEAT 8 [SQ :N ...

But why not REPEAT 6 and then turn a little?

Or, why not consider a systematic reduction of the basic design?

Image
LOGO Challenge 7 - More Stars and Squares

Why not then put all the four designs together?

Image
LOGO Challenge 7 - More Stars and Squares

Why not add others that are bigger?

BUT what has this got to do with the following numbers:

0.4142; 1.4142 and 2.4142?