Introduction to Algorithms using Netlogo. What’s an Algorithm Definitions of Algorithm on the Web: –A procedure or formula for solving a problem. www.cctvconsult.com/glossary.htm.

Slides:



Advertisements
Similar presentations
Super Logo Help Sheets…. Help Save Open Memory View Problems Projects Shortcuts Click on the labels to find out more about each icon!
Advertisements

Agents and Pervasive Computing Group Università di Modena e Reggio Emilia System Requirements NetLogo is designed: to run almost any type of computer.
Mouse Tutorial for Win XP In this tutorial you will learn to: Move the mouse Click and double click Make selections Manage windows Use menus Click the.
Microsoft Office 2007-Illustrated Introductory, Windows Vista Edition Windows XP Unit A.
Logo Lesson 1 TBE Fall 2004 Farah Fisher.
Excel application for accounting principles. Expanding the Formula Bar Click on the Collapse Formula Bar. Drag the border of the Formula Bar to increase.
Microsoft Excel 2003 To start Excel, click the start button. A slightly different procedure might be required for computers on a network. If you need assistance,
English I Worthy “How-To-” List Copy and Paste Screen Shot Name Your Flashdrive To Name Your Folder.
Click here to start the game! 20 Points 30 Points 40 Points 50 Points 10 Points 20 Points 30 Points 40 Points 50 Points 30 Points 40 Points 50 Points.
Introduction Headers & Footers. You will learn how to: Create, Format, Edit and Delete Create Different Header/Footer in a Document Create a First Page.
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,
Using Logo and Logic Please use speaker notes for additional information!
Exploring the Basics of Windows XP. Objectives Start Windows XP and tour the desktop Explore the Start menu Run software programs, switch between them,
Slide Transitions Slide Show, Slide Transition opens Slide Transition task pane Practice each option setting to select the transition style, its speed,
Introduction to TouchDevelop
Click the mouse to continue. Aligning cell contents You align data in a cell in relation to the edges of the cell. Aligned on the right side of the cell.
Exploring the Basics of Windows XP
2-Day Introduction to Agent-Based Modelling Day 1: Session 4 Networks.
Presentation Software EDTS100 Lecture 7. Presentation Software Some Options KidPix MicroWorlds PowerPoint Frontpage Kahootz.
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 Look Inside Some NetLogo Simulations Bruce Edmonds Centre for Policy Modelling Manchester Metropolitan University.
Microsoft ® Office OneNote ® 2003 Training Get to know OneNote CGI presents:
Copyright © 2001 by Wiley. All rights reserved. Chapter 2: Using Visual Basic to Create a First Project Getting Started with VB Development Environment.
New Mexico Computer Science For All Interface Output in NetLogo (Part 1) Maureen Psaila-Dombrowski.
A SIMPLE COMPUTER LANGUAGE LOGO. LOGO Introduction Logo is the simplest programming language. It.
Art 321 Lecture 7 Dr. J. Parker. Programming In order to ‘make things happen’ on a computer, you really have to program it. Programming is not hard and.
Introduction to TouchDevelop
MSW Logo By Awin 9s.
Logo For beginners By Dali Matthews 9S What is logo?
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.
XP New Perspectives on Microsoft Windows 2000 Professional Windows 2000 Tutorial 1 1 Microsoft Windows 2000 Professional Tutorial 1 – Exploring the Basics.
Introduction to Using the Notebook 10 Software for SMART Board Day 2 LIVINGSTON PARISH PUBLIC SCHOOLS Facilitated by S. Waltman.
CPSC 171 Introduction to Computer Science More Algorithm Discovery and Design.
Welcome to the PowerPoint on how to use PowerPoint 2007 Neil Hecht Instructional Technology Facilitator Onslow County Schools.
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.
USING A TABLE OF VALUES TO ESTIMATE A LIMIT. Use a table of values to estimate.
Microsoft Office XP Illustrated Introductory, Enhanced Started with Windows 2000 Getting.
Students, Learning, and Technology: Mindtools for the 21 st Century Powering Up With Technology Conference November 15, 2003 Educational Technology Research.
The Hare Raising Experience of Logo in the Classroom
Logo Programming Fall 2011 – Session 7 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
Introduction to Windows Created by Mrs. Leverette.
Students, Learning, and Technology for the 21 st Century Young Scholars Program Summer 2003 Educational Technology Outreach College of Education University.
How to Resize and Crop Pictures Easily in Microsoft Paint Ammar Rai ENGL 393.
ALGORITHMS AND PROGRAMMING Unit 11.1A:. Starter activity - Event Driven  Imagine an icon on your desktop and list the events that are taking place; 
By Liam Lane How To Use MSW LOGO.
Logo for Beginners By Chris 9S.
Flowcharts C++ Lab. Algorithm An informal definition of an algorithm is: a step-by-step method for solving a problem or doing a task. Input data A step-by-step.
The Word Window Fill out your Word Window Worksheet as you view this PowerPoint.
How Computers Solve Problems Computers also use Algorithms to solve problems, and change data into information Computers can only perform one simple step.
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?
Students, Learning, and Technology for the 21 st Century Young Scholars Program Summer 2007 Educational Technology Policy, Research and Outreach Davina.
Using Logo to explore spiral patterns. Paul Broadbent Spiral patterns This is a (1,2,3) spiral path. It repeats lines of three.
EXAMPLE FORMULA DEFINITION 1.
Computer Programming.
Using Logo to develop logical thinking
LOGO BY Kaotip 9S.
LOGO 32 By: Xenon 9S.
Young Scholars Program 2003
Building a Game.
Microsoft® Small Basic
How to Disable the Pop-up Blocker in BitDefender.
Learning to program with Logo
Microsoft Windows 2000 Professional
Algorithms and Flow Charts
Unit 3 lesson 2-5 The Need For Algorithms- Creativity in Algorithms – Simple Commands - Functions Day 18.
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.
Lesson 18 – how to add a new button for pivot right
Presentation transcript:

Introduction to Algorithms using Netlogo

What’s an Algorithm Definitions of Algorithm on the Web: –A procedure or formula for solving a problem. –A set of instructions or procedures for solving a problem. –An unambiguous formula or set of rules for solving a problem in a finite number of steps. Algorithms for encryption are usually called Ciphers. –is a procedure or formula for solving problems

Drawing in Netlogo Start Netlogo (under CSCI programs) and resize the display to make the turtle easier to see Click here

Use the command center to create a turtle First define its shape Next create one turtle

Now give commands to the turtle Set to T for turtle Give the command pd for pen down

Begin to draw a box using the commands fd (forward) and lt (left turn)

Make your algorithm into a procedure Commands to create the turtle in a procedure called setup Commands given to the turtle in a procedure called go

Create 2 buttons to run your procedures Use the button icon on the interface toolbar. Runs the setup procedure

Try out your new buttons

Less typing?