Using Logo to explore spiral patterns. Paul Broadbent Spiral patterns This is a (1,2,3) spiral path. It repeats lines of three.

Slides:



Advertisements
Similar presentations
I Spy! Shapes in our world.
Advertisements

First of all – lets look at the windows you are going to use. At the top you have a toolbar, with all your various tools you can use when customising your.
CECE STMWPR[ ] GO CM BASIC ROAMER CONTROLS: Click on the buttons to see what they each do!
Logo Lesson 1 TBE Fall 2004 Farah Fisher.
COMPSCI 105 S Principles of Computer Science
Computer Science 1000 LOGO I. LOGO a computer programming language, typically used for education an old language (1967) the basics are simple: move a.
Super Logo. Key Instructions Pendown penup Forward 50 ( this number can change) Right 90 ( this number can change as well) Now try and draw a Early finishers,
A Guide To Using Roamer. X Menu 1.Clear Roamers ‘Go’ MemoryClear Roamers ‘Go’ Memory 2.Change Step SizeChange Step Size 3.ForwardsForwards 4.BackwardsBackwards.
LOGO SOFTWARE BY: SAVE 9S. INTRODUCTION Logo is a software that can be found at : Shared area> High School > ICT > take home software > LOGO32. This is.
A SIMPLE COMPUTER LANGUAGE LOGO. LOGO Introduction Logo is the simplest programming language. It.
Class 2 Introduction to turtle graphics
Introduction to Algorithms using Netlogo. What’s an Algorithm Definitions of Algorithm on the Web: –A procedure or formula for solving a problem.
MSW Logo By Awin 9s.
An introduction to Logo Mike Warriner Engineering Director, Google Note: This course is not an endorsement of Logo by Google. All views in this document.
Programmming Class Fall 2011 Sobhan Highschool Teacher: M.Taghizadeh.
CONTROL SYSTEMS Control Systems A command is a directive that performs a specific task An argument is a variable that can be used by the function reveiving.
Logo Programming Fall 2011 – Session 7 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
Roamer help file: Use this power-point slide to find out more about the buttons on Roamer…
The Pro-Bot* Kate Lester and Nancy Chaffer Term 2, 2010 PCS TPL
By Liam Lane How To Use MSW LOGO.
Logo for Beginners By Chris 9S.
 Make sure you are subscribed to announcements on Moodle.  Activity 5 will be due before the beginning of lab next week.  Check Moodle for complete.
Repeating patterns Can you work out the next shape in the pattern?
LOGO For the beginner Made by Rio Narazaki. W HAT I S L OGO ? Logo is a computer programming language used in Education. Logo is very easy to use. The.
First of all – lets look at the window’s you are going to use. At the top you have a toolbar, with all your various tools you can use when customising.
How many …?. What shape can you see? I can see some _____. Q1 Q1 stars.
Search for it on your computer
LOGO WHAT IS IT? HOW TO USE IT AND HOW USEFUL CAN IT BE?
What is it? How to use it and how useful can it be?
Using the Python Turtle
Module 2: Investigation 2
Stage 3: Artist What do you remember from the last class?
Computer Programming.
Module 1: Investigation 2 Repeating and Alternating Patterns
Exploring Mathematical Relationships Module 5: Investigation 3
Using Logo to develop logical thinking
LOGO BY Kaotip 9S.
LOGO 32 By: Xenon 9S.
Module 2: Investigation 1
Coordinates And Geometry Module 6: Investigation 1
Do it now activity Last lesson we used Flowol to create a solution to a problem a computer could solve. Identify what each symbol does:
Exploring Mathematical Relationships Module 5: Investigation 2
We are removing the 4th part of hw2pr2 for now.
Evgeniya Gushchina EPAM e-kids volunteer computer science teacher
Learning to program with Logo
Area Explorations Using Shape Builder.
Sequencing Learning Objective: to be able to design algorithms that use sequencing.
Fraction Fun.
Module 2 Lesson 3 Over and Over Again
Using Beebots and Roamers
Hour of Code.
Section 3 Programming with Turtle Graphics
Which way does the robot have to turn to get to the charger?
All About Shapes! Let’s Go!.
SCITT Day 5 Position, direction and angle identifying key features of shape and space.
Using Logo and Logic This presentation uses a version of Logo called StarLogo available through MIT. It can be downloaded for free and installed on your.
Year 2 Autumn Term Week 8 Lesson 3
Logo Programming.
Module 2 Lesson 3 Over and Over Again
Year 2 Autumn Term Week 8 Lesson 3
Mod 2 Lesson 2 Repeating with loops
Module 2 Lesson 3 Over and Over Again
Area of combined figures
Transformations Project
Can you work out the next shape in the pattern?
Finding the Area of a Rectangle
Area of combined shapes
Welcome to Bluecoat Beechdale Academy Maths Department
Can you work out the next shape in the pattern?
Presentation transcript:

Using Logo to explore spiral patterns

Paul Broadbent Spiral patterns This is a (1,2,3) spiral path. It repeats lines of three lengths. The turns are always 90˚ clockwise. Investigate! Explore the patterns made with different 90˚ spiral paths, made from three lengths.

Paul Broadbent Spiral patterns What if… two of the numbers are the same? three of the numbers are the same? the order of the numbers is changed? more than three numbers are repeated? the angle is changed from 90˚? Investigate… spirals that have similar shapes spirals that have central squares the area of each rectangle or square the area enclosed by the whole shape

Paul Broadbent Building procedures A set of instructions or a procedure can be given a name to help the computer to remember the drawing instructions for a picture, shape or pattern. Typing TO or BUILD followed by a name will allow a procedure to be built, for example: TO STAR REPEAT 5 [FORWARD 200 RIGHT 144] END Type the procedure name, STAR, to check that it works. Try using procedures to explore different spiral patterns. Use the basic commands of FORWARD, BACKWARD, RIGHT, LEFT, PEN UP, PEN DOWN, CLEAR, REPEAT and BUILD (or TO).

Paul Broadbent Roamer will repeat a set of instructions in the same way as Logo. Press R followed by a number less than 100 to repeat a list of instructions that number of times. The list must be contained within square brackets. Press GO. Roamer can also be taught a procedure in the same way as Logo. Give the procedure a number between 1 and 99. Enter the list of instructions for the procedure within the brackets. For example here is a procedure called P5: P 5 [ ] [ ] GO Press P 5 to enter into the GO program. Press GO Roamer