From Mini Rover Programs to Algebraic Expressions

Size: px
Start display at page:

Download "From Mini Rover Programs to Algebraic Expressions"

Transcription

1 From Mini Rover Programs to Algebraic Expressions G. Barbara Demo Dipartimento Informatica University of Torino Torino, Italy Abstract During their second year of a junior high school, pupils wrote programs for autonomous mini robots using a Logo-like language supplemented by an integrated development environment specifically implemented for them. Then pupils and teachers together performed a static analysis of programs in order to specify the length of the paths each robot covers when programs are run. If a robot mounts sensors and the analyzed program uses them, the path covered during each run generally changes and has a different length. Pupils found that it can be specified with an expression containing variables. This analysis associating algebraic expressions to robot programs provided teachers for a support motivating elementary algebra, a typical subject addressed in junior high schools. Thus it is an example of how robotics can be used as means to introduce and concretely manipulate topics of traditional disciplines. It can be integrated in standard school curricula and become a constructionist learning tool for pupils involved in programming activities. Keywords - programming; inquiry based science education; generalization; learner centered education I. INTRODUCTION Computer Science (CS) or Informatics, as it is more often called in Europe, is present in activities of k-12 schools in mainly three different ways: - for educating pupils in computer science. These are the CS disciplinary activities obviously present in schools that have CS in their educational offer. Very well known robot competitions like RoboCup are in this category, see - when using software tools to perform activities concerning non CS disciplines. We call this the instrumental presence of CS in a school activity. Popular examples are GeoGebra, Cabri, MathLab, simulators in general and many other software systems used to visualize and experience the different disciplines; - when using concepts and methods of informatics to teach other disciplines. We call this approach the crossdisciplinary presence of CS in education. In Italy some recent yet already popular CS competitions, like Kangourou for Informatics and Problem Solving Olympic Games, aim at developing this type of CS presence in schools [1,2]. When technology was first introduced in education, the cross-disciplinary approach was considered very interesting but after a while it has been less investigated likely overwhelmed by the instrumental use of CS. Competitions named above, in the third approach to CS, have recently received a large attention in Italian schools and are contributing to renew the interest toward how computer science may influence approaches to learning the other subjects present in standard curricula. Several projects are not classifiable in one only of the above types of CS presence in education because, in the way they are carried out, we can detect aspects belonging to more than one of the above components. In particular, in the crossdisciplinary approach often elements of informatics are taught in order to use them in other disciplines. This is the case of data structures such as trees or graphs introduced to show how modeling a given problem environment in a proper way leads to an easier solution. Here we describe an activity in support of the crossdisciplinary approach carried out in a junior high school second class, i.e. with years old pupils, during 2009/2010 school-year. The aim of the study is introducing pupils to algebraic expressions and experimenting when they are needed to specify the length of the paths robots cover when running pupils programs. Pupils write programs for moving different types of autonomous mini robots using a Logo-like language and an integrated development environment (IDE) specifically implemented for young students. In Section 2 examples of programs written in this language are shown and the IDE is shortly described. After some programming activities with very simple rovers, pupils are given sensors that allow a robot to detect when, for example, it is touching an obstacle, hearing a sound or crossing a dark strip on the floor. Pupils design robots behaviors that make use of sensors and write corresponding programs. Then they are required to think whether it is possible to specify the length of the path or of segments of the path covered by a robot during a run of a program. As described in Section 3, through this analysis of their programs, our students were leaded to introduce variables and algebraic expressions typical concepts in their curriculum of junior high school mathematics. By means of this activity, students could experiment and thus motivate elementary algebra. In Section 4 we summarize our current investigations, not yet verified on students, on how pupils can contrast different solutions to the same problem by combining code-reading, paths the robots draw while executing different codes and the shapes of these paths. During these comparisons teachers may drive pupils to discover which solutions solve more

2 problems, i.e. to discover more general solutions and introduce students to mathematical generalization. The need for tools motivating elementary algebra and leading to generalization was inspired by the research described in [3], tough, dealing with robot programming, we work in a quite different environment. Rocard s Report has become a mandatory reference for Science pedagogy since its publication in 2007 [4]. In it we read: Mathematics education may easily use a problem based approach while, in many cases, the use of experiments is more difficult. Our aim is to find educational activities for experimenting mathematics, like those described here. They will contribute to settle also for mathematics learning an Inquiry Based Science Education (IBSE) methodology considered as the foundation of the renewed pedagogy for the future of Europe outlined in Rocard s Report. In Section 5 we summarize conclusions on our work. Ending this Introduction, we recall that educational robotics has been and still is addressed in several projects belonging to the first category of CS disciplinary activities. Likely most known of these projects is Roberta, born around 2002 and now developed in several European countries [5]. Another European project called TERECoP (Teacher Education on Robotics-Enhanced Constructionist Pedagogical methods) is nearer to the constructionist perspective for robotics integrated into the school normal curricula that is the aim of our activities [6]. TERECoP complements our activities by adressing high school and university level students. Kurebayashi s group research is also of interest for us because, tough in the first CS approach category, it investigates cognitive influences of the experience of programming on young students, a fourth future way of considering the presence of CS in schools [7]. II. ROVER PROGRAMMING Using programming as a support to other disciplines is one of our aims. Thus it is important we offer a language oriented to users new to programming such as our students and teachers normally are. Also important is to use the same language and IDE for all types of mini robots found in school. In this section both the programming language and the IDE offered to schoolchildren and to teachers are sketched as an introduction to the program analysis described in section III. A. First Programs In our activities pupils use a Logo-like textual language called NQCBaby from the NQC language developed by D. Brawn for the RCX Lego brick [8, 9]. RCX is the brick we found in schools at the beginning of our educational robotics activities in In the following examples the Italian primitives of the NQCBaby language are translated in English and parameters of moving statements are tenth of seconds. In Progr-1 the first instruction (Hi Mafalda)gives the name Mafalda to the robot, then commands for robot moving follow. Prog-1: Hi Mafalda forward(20) right(10) backward(9) NQCBaby is not a complete programming language because we do not intend to make children become good programmers using it. It is language designed for specific educational achievements. For example, in primary school, a gradual introduction of new hardware components, sensors or actuators, and the related language primitives for using them in robot-programmed behaviors can comply the advances of schoolchildren logical and linguistic abilities, as described in [10]. One of our activities with pupils of the junior high school second year, concerned an exhibition where each robot had to show the geometrical shapes pupils had taught her/him. Most groups came out with programs where several geometrical figures are drawn on the floor one after the other as coded in the program, always the same in the same sequence, as in program Prog-2. Prog-2: Hi Susi forward(12) left(10) repeat(3) forward(9) left(12) A repeat(n) statement makes its body (i.e. the statements from that statement to its corresponding endrepeat) be repeated n times. When we introduce sensors (touch, light or sonar sensors) the NQCBaby language is enriched with statements to deal with them, i.e. for specifying to which port a sensor is connected and for verifying sensor reactions to the environment. In Progr-3 below, a touch sensor is declared on port-1 of the brick. We asked pupils to think of a program that makes the robot move on the floor and turn when touches an obstacle. Progr-3 is the program produced by one group. Before or while the robot is executing Progr-3, pupils decide where to put the obstacles (often these simply are the feet of the pupils). In Prog-3 the statement switches on the engines of both wheels in the forward direction. Thus the robot goes on until something is touched (if-touches becomes true) that makes the robot go right(5) etc. With this program the robot goes on (repeat-always) until it is stopped from the outside. Prog-3: Hi Zoe port-1 is touch repeat-always if-touches right(5) forward(3) left(5) end-if-touches Other examples of robot programs are shown in the next section.

3 B. An IDE for unexperienced people Pupils write their programs using the IDE implemented by students of our university whose interface is shown in Figure 1. The NQCBaby code is written in the "white board" central to the window in figure 1. The toolbar shows icons for writing a new code sequence, opening a directory, saving or printing the NQCBaby sequence. The icon gear is used for translating the NQCBaby code. When the Lego RCX robot is used, NQCBaby is translated into NQC [8,10], when an NXT brick is used, NQCBaby is translated into the NXC (Not exactly C) language [8]. As we said, our robot programming language is not a complete language: pupils can see their code translation in the IDE window and thus begin to learn the target language in case they want to achieve advanced programming competencies. Errors are reported at the bottom with code line. Before opening the IDE the user specifies which robot is used and its composition, i.e. which types of sensor or components are present on ports and actuators. Figure 1. IDE window Introduced by levels, the list of commands shown in the left column of figure 1 increases as children school education grows with their knowledge of what they can/want to do with the different types of robots. III. SPECIFYING THE PATH LENGTH After pupils write their programs, they are required to think whether by analyzing the code it is possible to specify the length of the path covered by each one of the robots during a run of these programs. A. Examples We assume that for every run the external (to the brick) environment conditions are the same, in particular we assume that each group always refers to the same robot moving on the same floor with the same battery charge level. Under these conditions when the robot of a single group of pupils executes Prog-1, seen in the previous Section, it covers a path having the same length for every run. Robots of different groups executing Prog-1 may cover a path of a different length, for example because of different wheels (comments on this wheel dependency are among others leading to experience direct and inverse proportions as described in [11]). Yet, each group can precisely say the value of its robot path length for Progr-1. Aiming at having the length expressed in a more general way, independent on the robot, something like the following turned out from our discussions with pupils: α: Length-for-forward(20) + Length-for-right(10) + Length-forbackward(9) where Length-for-forward(20) is the measure of the path covered by one of the robots in 2 seconds, similarly for the rest of α. In Progr-2 we find twice the code pattern: repeat(number)..., first is, second is repeat(3). Thus the length of the path covered by the robot during one execution turns out, expressed in the α-form, like the following: β: 4[Length-for-forward(12)+Length-for-left(10)] + 3[Length-forforward(9) + Length-for-left(12)] The lengths of the paths the same robot covers during a run of programs Prog-1 and Prog-2 are constant for each program. B. Variable paths need variables With Prog-3 pupils expect and verify that the path the same robot covers can be different for every different execution of the program because it depends on how many obstacles the robot finds on its way and on where each obstacle is positioned. We asked pupils to think of how we can specify the length of the path covered by the robot for an execution of this program with three obstacles on its way. The following expression has been formulated: γ: Length-for-forward( x0 ) + [Length-for-rigth(5) + Length-forforward(3) + Length-for-left(5) + Length-for-forward( x1)] + [Length-for-rigth(5) + Length-for-forward(3) + Length-for-left(5) + Length-for-forward( x2)] + [Length-for-rigth(5) + Length-forforward(3) + Length-for-left(5) + Length-for-forward( x3)] In expression γ we have seen for the first time the use of variables x0, x1, x2 and x3: x0, x1 and x2 get a precise value after pupils decide where to put the three obstacles and these values can be different for every execution of Prog-3 if positions of the three obstacles are different Length-for-forward( x3) corresponds to the path the robot covers after the third obstacle, when it executes: right(5)forward(3)left(5) and it is stopped from the outside. For the geometrical shape problem solved with Prog-2 by a group of pupils, another group, toward the end of the school year, wrote Prog-4 that uses the light sensor and the statement repeat-while-bright to verify its status. The

4 program is shown here in a short version where we do not have a code sequence concerning triangles (it is similar to the one shown here for quadrangles): Prog-4: Hi Mafalda port-2 is light repeat-while-bright left(11) In Prog-4 the robot Mafalda, equipped with a light sensor on port 2, starts moving on the class floor and for four times repeats the going-forward command while the light sensor registers a bright environment. When the bright condition becomes false, for example because a black paper is brought in front of the light sensor, the robot goes left and then again straight until another dark condition is found. For each run of the program, one different pupil of the group is Mafalda's driver thus in charge of deciding her path, i.e. deciding which four sided geometric figure perimeter the robot has to move on by deciding when to use the black paper. This program was run with a robot that by left(11) moved about 90^ so that the robot roughly moved on a rectangle perimeter decided by her current pilot assuming the pilot pays attention at letting Mafalda close her path. The following Prog-5 is equivalent to Prog-4: Prog-5: Hi Mafalda port-2 is light repeat until-dark left(11). Like with previous programs, pupils can verify that the path the robot covers can be different for every different execution of Progr-4 and Prog-5. For an execution of program Prog-4 we have: δ: (Length-for-forward(x4)+Length-for-left(11)) + (Length-for-forward(x5)+Length-for-left(11)) + (Length-for-forward(x6)+Length-for-left(11)) + (Length-for-forward(x7)+Length-for-left(11)) Variables x4, x5, x6 and x7, appearing in expression δ, get values after the pilot of the robot decides when to use the black paper. These values are in general different for every execution of Prog-4. The synthesis of one or more expressions can be done during the translation of the code. An extension of our IDE is under development to provide this functionality. IV. GENERALIZATION Current investigations concern how pupils can compare different solutions to the same (or similar) problem by combining code-reading with both paths the robots draw while executing different codes and the shapes of these paths. During these comparisons teachers may drive pupils to discover which solutions solve more problems, i.e. to discover more general solutions and introduce pupils to mathematical generalization. By looking at the executions of their programs pupils can see if a code makes the robot move on the same path or not. Different paths drawn by different programs possibly mean a different solution has been found to a given problem or different problems have been solved with, obviously, different solutions. Pupil can discover that the robot behavior they have implemented is not a solution for the given problem but for a different one. Questioning the statement of a problem is not something pupils develop an habit for during the primary and junior secondary school as we can read, for example, in the book by Stella Baruk [12]. In robot programming normally pupils are first given the kernel of a problem to solve defining a behavior for their robot, then they have to design a robot behavior, investigate if this is a solution to the given problem, possibly add constraints to the considered scenario and so on. Pupils are involved in activities where they discover that it is normal having to enrich a problem statement though they turn out to be activities strictly connected to mathematics When different paths drawn by the same program it means that a different solution has been found to a given problem or that different problems have been solved. Combining the analysis of programs here described and how the robots actually execute them, we can compare with pupils the different solutions to the same problems and consider how general the given solutions are. Normally pupils first propose solutions very specific to a given problem, in a second step we can drive them to think to more general solutions. In our activities, pupils were first asked to write a program for the robot could go around a box, then modify that program for the robot could go around a chair, then around a table. In the end we had groups finding solutions where the robot can go around any rectangle with a program similar to Prog-4 or Prog-5 above. V. CONCLUSIONS The general thinking of CS in school is changing [1, 13]. As Y. B. Kafai writes about computer games for learning, up to now the use of Informatics in schools for learning normal curricula has been mostly instructionist, i.e. limited to the use of software applications while the direction of our work is toward a constructionist perspective for CS activities in education [14]. As a contribution to this perspective, here we have described an activity integrating mini-robot programming in the standard curriculum of a second grade junior high school in Italy. Integrating technology in school curricula means that technology is used as a tool allowing pupils to build activities exploiting or motivating concepts present in their normal curricula. This integration contributes to a new conception of computing in schools and introduces students to a digital literacy richer than the one they are nowadays usually exposed to.

5 In previous ressearch, we have proposed activities with different types of autonomous mini robots to children of different ages: in kindergarten, primary and junior high schools [15, 16]. Pupils in pre-writing age program by pushing buttons, then use different iconic languages or the textual Logo like language mini robots is that pupils face problems, to be solved and programmed, they understand and are interested in solving. Moreover, here we have described an activity showing how educational robotics is a learning environment where robot programming activities can be integrated into a standard subject rather than being a form of ICT use added to school curricula as one more, separate, subject or as a number of (software) tools for practicing topics from standard subjects. Until nowadays, such an integration has rarely been present in the proposals for introducing computing technologies in schools, though considered a most fruitful educational usage of computers already in Papert s researches of the 70 s. ACKNOWLEDGMENT Thanks to the pupils who were engaged in the activities here described and to their teacher Annamaria Paolillo. Thanks for our -discussions to R. Didoni of the Regional Institute for Educational Research-Lombardia and to Eleonora Pantó. I am grateful to the referee who suggested reading Y. B. Kafai s papers. REFERENCES [1] Lissoni, A., Lonati, Monga, Morpurgo, Torelli, Working for a leap in the general perception of computing, Proc. Informatics Education Europe III Conf., Venice, December 4-5, [2] G. Casadei, A. Teolis, k-12 Problem Solving Olympic Games, Proc. Didamatica 2009, Trento (in Italian). [3] Gutierrez, S., Mavrikis, M., Pearce, D., A Learning Environment for Promoting Structured Algebraic Thinking in Children, Proc.. IEEE 8th ICALT Conf., Santander, July 2008, pp [4] Michel Rocard et al., Science Education now: a renewed pedagogy for the future of Europe, EUR22845, ISBN , European Communities, [5] Roberta project: Access date: August, 25th 2009 [6] TERECoP Project: Access date: January, 25th [7] Kurebayashi, S., Kanemune, S., Kamada, T., Kuno, Y.,The Effect of Learning Programming with Autonomous Robots for Elementary School Students, Proc. EuroLogo 2007 Conf., August 2007, p.32. [8] D. Baum (2004) NQC language, Access date: January [9] RCX and NXT Lego robots, Access date: April, 15 th, 2010, [10] G.B. Demo and G. Marcianò (2007) Contributing to the Development of Linguistic and Logical Abilities through Robotics, Proc. EuroLogo 2007 Conf., August 2007, p.46. [11] G.B. Demo, Robot Programming Integrated in a Junior High School Curriculum, Proc. Informatics Education Europe IV Conf., Freiburg, Nov.5-6, pp 56-63, [12] Baruk, S. (1985), L âge du capitain, Seuil, Paris. [13] Robotics School-Net Friend-Robot Access date: January, 25th 2010 [14] Y. B. Kafai, Playing and Making Games for Learning. Instructionist and Constructionist Perspectives for Games Studies, in Games and Culture, Vol. 1 N. 1 January 2006, [15] G. Marcianó, S. Siega, G. B. Demo (2008) Concrete Programming using Small Robots in Primary Schools, Proc. IEEE 8th ICALT Conf., Santander, July 2008, pp [16] M.S. Demichele, G.B. Demo, S. Siega (2008) A Piedmont SchoolNet for a K-12 Mini-Robots Programming Project: Experiences in Primary Schools, Proc. TERECoP Workshop Teaching with robotics, Conference SIMPAR 2008, Venice, November 2008.

Algebraic Expressions and Robot Programs in Junior High Schools

Algebraic Expressions and Robot Programs in Junior High Schools Algebraic Expressions and Robot Programs in Junior High Schools G. Barbara Demo Dip. Informatica, University of Torino, Italy barbara@di.unito.it Abstract In our ICT activities in junior high schools pupils

More information

Programming Robots in Primary Schools Deserves a Renewed Attention

Programming Robots in Primary Schools Deserves a Renewed Attention Programming Robots in Primary Schools Deserves a Renewed Attention G. Barbara Demo Dipartimento Informatica, Università di Torino, c.so Svizzera 185, 10149 Torino, Italy barbara@di.unito.it Abstract. Robot

More information

Experiences of Educational Robotics in Italian Schools

Experiences of Educational Robotics in Italian Schools Experiences of Educational Robotics in Italian Schools G. Barbara Demo Dip. Informatica University of Turin - Italy barbara@di.unito.it Summary: Recent initiatives in Italy for ICT in schools without and

More information

Contributing to the Development of Linguistic and Logical Abilities through Robotics

Contributing to the Development of Linguistic and Logical Abilities through Robotics Contributing to the Development of Linguistic and Logical Abilities through Robotics G. Barbara Demo, barbara@di.unito.it Dept of Informatics, Turin University Italy Giovanni Marcianó, marciano@irrepiemonte.it

More information

2.4 Sensorized robots

2.4 Sensorized robots 66 Chap. 2 Robotics as learning object 2.4 Sensorized robots 2.4.1 Introduction The main objectives (competences or skills to be acquired) behind the problems presented in this section are: - The students

More information

MADISON PUBLIC SCHOOL DISTRICT. GRADE 7 Robotics Cycle

MADISON PUBLIC SCHOOL DISTRICT. GRADE 7 Robotics Cycle MADISON PUBLIC SCHOOL DISTRICT GRADE 7 Robotics Cycle Authored by: Erik Lih Richard Newbery Reviewed by: Lee Nittel Director of Curriculum and Instruction Tom Paterson K12 Supervisor of Science and Technology

More information

Learning Computer Programming with Autonomous Robots

Learning Computer Programming with Autonomous Robots Learning Computer Programming with Autonomous Robots Shuji Kurebayashi 1, Toshiyuki Kamada 2, and Susumu Kanemune 3 1 Shizuoka University eskureb@ipc.shizuoka.ac.jp 2 Aichi University of Education tkamada@auecc.aichi-edu.ac.jp

More information

Pre-Activity Quiz. 2 feet forward in a straight line? 1. What is a design challenge? 2. How do you program a robot to move

Pre-Activity Quiz. 2 feet forward in a straight line? 1. What is a design challenge? 2. How do you program a robot to move Maze Challenge Pre-Activity Quiz 1. What is a design challenge? 2. How do you program a robot to move 2 feet forward in a straight line? 2 Pre-Activity Quiz Answers 1. What is a design challenge? A design

More information

Sample Pages. Classroom Activities for the Busy Teacher: NXT. 2 nd Edition. Classroom Activities for the Busy Teacher: NXT -

Sample Pages. Classroom Activities for the Busy Teacher: NXT. 2 nd Edition. Classroom Activities for the Busy Teacher: NXT - Classroom Activities for the Busy Teacher: NXT 2 nd Edition Table of Contents Chapter 1: Introduction... 1 Chapter 2: What is a robot?... 5 Chapter 3: Flowcharting... 11 Chapter 4: DomaBot Basics... 15

More information

Learning serious knowledge while "playing"with robots

Learning serious knowledge while playingwith robots 6 th International Conference on Applied Informatics Eger, Hungary, January 27 31, 2004. Learning serious knowledge while "playing"with robots Zoltán Istenes Department of Software Technology and Methodology,

More information

Issues in Information Systems Volume 13, Issue 2, pp , 2012

Issues in Information Systems Volume 13, Issue 2, pp , 2012 131 A STUDY ON SMART CURRICULUM UTILIZING INTELLIGENT ROBOT SIMULATION SeonYong Hong, Korea Advanced Institute of Science and Technology, gosyhong@kaist.ac.kr YongHyun Hwang, University of California Irvine,

More information

Activity Template. Subject Area(s): Science and Technology Activity Title: Header. Grade Level: 9-12 Time Required: Group Size:

Activity Template. Subject Area(s): Science and Technology Activity Title: Header. Grade Level: 9-12 Time Required: Group Size: Activity Template Subject Area(s): Science and Technology Activity Title: What s In a Name? Header Image 1 ADA Description: Picture of a rover with attached pen for writing while performing program. Caption:

More information

Summer on Campus - Learning Robotics with fun

Summer on Campus - Learning Robotics with fun Summer on Campus - Learning Robotics with fun A. Fernando Ribeiro & Gil Lopes Univ. of Minho, Dep. Industrial Electronics, Campus de Azurém, 4800-058 Guimarães, Portugal fernando@dei.uminho.pt & gil@dei.uminho.pt

More information

Line-Follower Challenge

Line-Follower Challenge Line-Follower Challenge Pre-Activity Quiz 1. How does a color sensor work? Does the color sensor detect white or black as a higher amount of light reflectivity? Absorbance? 2. Can you think of a method

More information

9/4/2013. Math. Curriculum Council September 5, topics nouns What? rigor verbs How?

9/4/2013. Math. Curriculum Council September 5, topics nouns What? rigor verbs How? Math Curriculum Council September 5, 2013 Cognitive Change rigor verbs How? Content Change topics nouns What? 1 CHANGES TO STUDENT EXPECTATIONS NEW Standard Change of Grade Level Change of Strand Other

More information

Math + 4 (Red) SEMESTER 1. { Pg. 1 } Unit 1: Whole Number Sense. Unit 2: Whole Number Operations. Unit 3: Applications of Operations

Math + 4 (Red) SEMESTER 1.  { Pg. 1 } Unit 1: Whole Number Sense. Unit 2: Whole Number Operations. Unit 3: Applications of Operations Math + 4 (Red) This research-based course focuses on computational fluency, conceptual understanding, and problem-solving. The engaging course features new graphics, learning tools, and games; adaptive

More information

How Do You Make a Program Wait?

How Do You Make a Program Wait? How Do You Make a Program Wait? How Do You Make a Program Wait? Pre-Quiz 1. What is an algorithm? 2. Can you think of a reason why it might be inconvenient to program your robot to always go a precise

More information

A Lego-Based Soccer-Playing Robot Competition For Teaching Design

A Lego-Based Soccer-Playing Robot Competition For Teaching Design Session 2620 A Lego-Based Soccer-Playing Robot Competition For Teaching Design Ronald A. Lessard Norwich University Abstract Course Objectives in the ME382 Instrumentation Laboratory at Norwich University

More information

OPEN SOURCES-BASED COURSE «ROBOTICS» FOR INCLUSIVE SCHOOLS IN BELARUS

OPEN SOURCES-BASED COURSE «ROBOTICS» FOR INCLUSIVE SCHOOLS IN BELARUS УДК 376-056(476) OPEN SOURCES-BASED COURSE «ROBOTICS» FOR INCLUSIVE SCHOOLS IN BELARUS Nikolai Gorbatchev, Iouri Zagoumennov Belarus Educational Research Assosiation «Innovations in Education», Belarus

More information

Agent-based/Robotics Programming Lab II

Agent-based/Robotics Programming Lab II cis3.5, spring 2009, lab IV.3 / prof sklar. Agent-based/Robotics Programming Lab II For this lab, you will need a LEGO robot kit, a USB communications tower and a LEGO light sensor. 1 start up RoboLab

More information

Hi everyone. educational environment based on team work that nurtures creativity and innovation preparing them for a world of increasing

Hi everyone. educational environment based on team work that nurtures creativity and innovation preparing them for a world of increasing Hi everyone I would like to introduce myself and the Robotics program to all new and existing families. I teach Robotics to all of your children for an hour every fortnight. Robotics is a relatively new

More information

Introducing 32-bit microcontroller technologies to a technology teacher training programme

Introducing 32-bit microcontroller technologies to a technology teacher training programme 2 nd World Conference on Technology and Engineering Education 2011 WIETE Ljubljana, Slovenia, 5-8 September 2011 Introducing 32-bit microcontroller technologies to a technology teacher training programme

More information

Utah Elementary Robotics Obstacle Course Rules USU Physics Day. Competition at USU Brigham City Campus 989 S Main St Brigham City, UT 84302

Utah Elementary Robotics Obstacle Course Rules USU Physics Day. Competition at USU Brigham City Campus 989 S Main St Brigham City, UT 84302 Utah Elementary Robotics Obstacle Course Rules USU Physics Day Competition at USU Brigham City Campus 989 S Main St Brigham City, UT 84302 Starting at 10:00 AM May 2 nd, 2017 COMPETITION OBJECTIVE The

More information

GRADE 4. M : Solve division problems without remainders. M : Recall basic addition, subtraction, and multiplication facts.

GRADE 4. M : Solve division problems without remainders. M : Recall basic addition, subtraction, and multiplication facts. GRADE 4 Students will: Operations and Algebraic Thinking Use the four operations with whole numbers to solve problems. 1. Interpret a multiplication equation as a comparison, e.g., interpret 35 = 5 7 as

More information

Research Project for Students: Simple Origami Decoration

Research Project for Students: Simple Origami Decoration Research Project for Students: Simple Origami Decoration Krystyna Burczyk, Wojciech Burczyk burczyk@mail.zetosa.com.pl www.origami.edu.pl Didaktikdes Falten, Freiburg im Breisgau. 2012 Our Idea We use

More information

ROBOTICS. also enjoy buildi ng things with such manipulatives as Legos. Robotics was the. Real World. technology build engineering intuition.

ROBOTICS. also enjoy buildi ng things with such manipulatives as Legos. Robotics was the. Real World. technology build engineering intuition. Real World ROBOTICS By Lisa J. Clark 38 Science and Children Lego equipment and adapters; $500 for computer tables; $1,750 for consultant fees; $4,000 for computers; and $350 for books and other program

More information

The Grade 1 Common Core State Standards for Geometry specify that children should

The Grade 1 Common Core State Standards for Geometry specify that children should in the elementary classroom means more than recalling the names of shapes, measuring angles, and making tessellations it is closely linked to other mathematical concepts. For example, geometric representations

More information

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 5 7. satspapers.org

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 5 7. satspapers.org Ma KEY STAGE 3 Mathematics test TIER 5 7 Paper 1 Calculator not allowed First name Last name School 2009 Remember The test is 1 hour long. You must not use a calculator for any question in this test. You

More information

Deriving Consistency from LEGOs

Deriving Consistency from LEGOs Deriving Consistency from LEGOs What we have learned in 6 years of FLL and 7 years of Lego Robotics by Austin and Travis Schuh 1 2006 Austin and Travis Schuh, all rights reserved Objectives Basic Building

More information

Path Following and Obstacle Avoidance Fuzzy Controller for Mobile Indoor Robots

Path Following and Obstacle Avoidance Fuzzy Controller for Mobile Indoor Robots Path Following and Obstacle Avoidance Fuzzy Controller for Mobile Indoor Robots Mousa AL-Akhras, Maha Saadeh, Emad AL Mashakbeh Computer Information Systems Department King Abdullah II School for Information

More information

Robotics Workshop. for Parents and Teachers. September 27, 2014 Wichita State University College of Engineering. Karen Reynolds

Robotics Workshop. for Parents and Teachers. September 27, 2014 Wichita State University College of Engineering. Karen Reynolds Robotics Workshop for Parents and Teachers September 27, 2014 Wichita State University College of Engineering Steve Smith Christa McAuliffe Academy ssmith3@usd259.net Karen Reynolds Wichita State University

More information

Line-Follower Challenge

Line-Follower Challenge Line-Follower Challenge Pre-Activity Quiz 1. How does a light sensor work? Does the light sensor detect white or black as a higher amount of light reflectivity? Absorbance? 2. Can you think of a method

More information

Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School

Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School elvonbur@mpsaz.org Water Sabers (2008)* High Heelers (2009)* Helmeteers (2009)* Cyber Sleuths (2009)* LEGO All Stars

More information

Grade 4 Mathematics Indiana Academic Standards Crosswalk

Grade 4 Mathematics Indiana Academic Standards Crosswalk Grade 4 Mathematics Indiana Academic Standards Crosswalk 2014 2015 The Process Standards demonstrate the ways in which students should develop conceptual understanding of mathematical content and the ways

More information

HOLY ANGEL UNIVERSITY COLLEGE OF INFORMATION AND COMMUNICATIONS TECHNOLOGY ROBOT MODELING AND PROGRAMMING COURSE SYLLABUS

HOLY ANGEL UNIVERSITY COLLEGE OF INFORMATION AND COMMUNICATIONS TECHNOLOGY ROBOT MODELING AND PROGRAMMING COURSE SYLLABUS HOLY ANGEL UNIVERSITY COLLEGE OF INFORMATION AND COMMUNICATIONS TECHNOLOGY ROBOT MODELING AND PROGRAMMING COURSE SYLLABUS Code : 6ROBOTMOD Prerequisite : 6ARTINTEL Credit : 3 s (3 hours LAB) Year Level:

More information

Physical Etoys: Freedom beyond the digital world

Physical Etoys: Freedom beyond the digital world Physical Etoys: Freedom beyond the digital world Gonzalo Zabala 1, Ricardo Morán 1, Sebastián Blanco 1 1 Universidad Abierta Interamericana, Buenos Aires, Argentina {gonzalo.zabala, ricardo.moran, sebastian.blanco}@uai.edu.ar

More information

understanding sensors

understanding sensors The LEGO MINDSTORMS EV3 set includes three types of sensors: Touch, Color, and Infrared. You can use these sensors to make your robot respond to its environment. For example, you can program your robot

More information

Montessori Rationale. study and materials. She brought us the phrase follow the child, as that is how we might all

Montessori Rationale. study and materials. She brought us the phrase follow the child, as that is how we might all Montessori Rationale Melissa Plunkett Montessori has allowed for the development of a peaceful and whole child with her study and materials. She brought us the phrase follow the child, as that is how we

More information

A User-Friendly Interface for Rules Composition in Intelligent Environments

A User-Friendly Interface for Rules Composition in Intelligent Environments A User-Friendly Interface for Rules Composition in Intelligent Environments Dario Bonino, Fulvio Corno, Luigi De Russis Abstract In the domain of rule-based automation and intelligence most efforts concentrate

More information

Scheduling Algorithms Exploring via Robotics Learning

Scheduling Algorithms Exploring via Robotics Learning Scheduling Algorithms Exploring via Robotics Learning Pavlo Merzlykin 1[0000 0002 0752 411X], Natalia Kharadzjan 1[0000 0001 9193 755X], Dmytro Medvedev 1[0000 0002 3747 1717], Irina Zakarljuka 1, and

More information

Revised Elko County School District 2 nd Grade Math Learning Targets

Revised Elko County School District 2 nd Grade Math Learning Targets Elko County School District 2 nd Grade Math Learning Targets Content Standard 1.0 Students will accurately calculate and use estimation techniques, number relationships, operation rules, and algorithms;

More information

Science Curriculum Mission Statement

Science Curriculum Mission Statement Science Curriculum Mission Statement In order to create budding scientists, the focus of the elementary science curriculum is to provide meaningful experience exploring scientific knowledge. Scientific

More information

ROBOTC: Programming for All Ages

ROBOTC: Programming for All Ages z ROBOTC: Programming for All Ages ROBOTC: Programming for All Ages ROBOTC is a C-based, robot-agnostic programming IDEA IN BRIEF language with a Windows environment for writing and debugging programs.

More information

UNIT VI. Current approaches to programming are classified as into two major categories:

UNIT VI. Current approaches to programming are classified as into two major categories: Unit VI 1 UNIT VI ROBOT PROGRAMMING A robot program may be defined as a path in space to be followed by the manipulator, combined with the peripheral actions that support the work cycle. Peripheral actions

More information

Foundation - 2. Exploring how local products, services and environments are designed by people for a purpose and meet social needs

Foundation - 2. Exploring how local products, services and environments are designed by people for a purpose and meet social needs Foundation - 2 LEGO Education Technologies and society Identify how people design and produce familiar products, services and environments and consider sustainability to meet personal and local community

More information

Activity overview. Background. Concepts. Random Rectangles

Activity overview. Background. Concepts. Random Rectangles by: Bjørn Felsager Grade level: secondary (Years 9-12) Subject: mathematics Time required: 90 minutes Activity overview What variables characterize a rectangle? What kind of relationships exists between

More information

Laboratory 7: CONTROL SYSTEMS FUNDAMENTALS

Laboratory 7: CONTROL SYSTEMS FUNDAMENTALS Laboratory 7: CONTROL SYSTEMS FUNDAMENTALS OBJECTIVES - Familiarize the students in the area of automatization and control. - Familiarize the student with programming of toy robots. EQUIPMENT AND REQUERIED

More information

Robotic teaching for Malaysian gifted enrichment program

Robotic teaching for Malaysian gifted enrichment program Available online at www.sciencedirect.com Procedia Social and Behavioral Sciences 15 (2011) 2528 2532 WCES-2011 Robotic teaching for Malaysian gifted enrichment program Rizauddin Ramli a *, Melor Md Yunus

More information

GEARS-IDS Invention and Design System Educational Objectives and Standards

GEARS-IDS Invention and Design System Educational Objectives and Standards GEARS-IDS Invention and Design System Educational Objectives and Standards The GEARS-IDS Invention and Design System is a customizable science, math and engineering, education tool. This product engages

More information

Pearson's Ramp-Up Mathematics

Pearson's Ramp-Up Mathematics Introducing Slope L E S S O N CONCEPT BOOK See pages 7 8 in the Concept Book. PURPOSE To introduce slope as a graphical form of the constant of proportionality, k. The lesson identifies k as the ratio

More information

Welcome to. NXT Basics. Presenter: Wael Hajj Ali With assistance of: Ammar Shehadeh - Souhaib Alzanki - Samer Abuthaher

Welcome to. NXT Basics. Presenter: Wael Hajj Ali With assistance of: Ammar Shehadeh - Souhaib Alzanki - Samer Abuthaher Welcome to NXT Basics Presenter: Wael Hajj Ali With assistance of: Ammar Shehadeh - Souhaib Alzanki - Samer Abuthaher Outline Have you met the Lizard? Introducing the Platform Lego Parts Motors Sensors

More information

Elko County School District 5 th Grade Math Learning Targets

Elko County School District 5 th Grade Math Learning Targets Elko County School District 5 th Grade Math Learning Targets Nevada Content Standard 1.0 Students will accurately calculate and use estimation techniques, number relationships, operation rules, and algorithms;

More information

Lab book. Exploring Robotics (CORC3303)

Lab book. Exploring Robotics (CORC3303) Lab book Exploring Robotics (CORC3303) Dept of Computer and Information Science Brooklyn College of the City University of New York updated: Fall 2011 / Professor Elizabeth Sklar UNIT A Lab, part 1 : Robot

More information

Developing Algebraic Thinking

Developing Algebraic Thinking Developing Algebraic Thinking DEVELOPING ALGEBRAIC THINKING Algebra is an important branch of mathematics, both historically and presently. algebra has been too often misunderstood and misrepresented as

More information

MANIPULATIVE MATHEMATICS FOR STUDENTS

MANIPULATIVE MATHEMATICS FOR STUDENTS MANIPULATIVE MATHEMATICS FOR STUDENTS Manipulative Mathematics Using Manipulatives to Promote Understanding of Elementary Algebra Concepts Lynn Marecek MaryAnne Anthony-Smith This file is copyright 07,

More information

EECE401 Senior Design I. Electrical and Computer Engineering Howard University. Instructor Dr. Charles Kim

EECE401 Senior Design I. Electrical and Computer Engineering Howard University. Instructor Dr. Charles Kim EECE401 Senior Design I Electrical and Computer Engineering Howard University Instructor Dr. Charles Kim [ckim@howard.edu] Fall 2014 Charles Kim Howard University 1 Senior Design brief definition Is Culmination

More information

Robotics II Curriculum

Robotics II Curriculum Randolph Township Schools Randolph Middle School Curriculum Department of Science, Technology, Engineering, and Math Anne Vitale Richardson Supervisor Curriculum Committee Ned Sheehy Nick Lavender Curriculum

More information

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 6 8. satspapers.org

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 6 8. satspapers.org Ma KEY STAGE 3 Mathematics test TIER 6 8 Paper 1 Calculator not allowed First name Last name School 2009 Remember The test is 1 hour long. You must not use a calculator for any question in this test. You

More information

Mindstorms NXT. mindstorms.lego.com

Mindstorms NXT. mindstorms.lego.com Mindstorms NXT mindstorms.lego.com A3B99RO Robots: course organization At the beginning of the semester the students are divided into small teams (2 to 3 students). Each team uses the basic set of the

More information

Learning Goals and Related Course Outcomes Applied To 14 Core Requirements

Learning Goals and Related Course Outcomes Applied To 14 Core Requirements Learning Goals and Related Course Outcomes Applied To 14 Core Requirements Fundamentals (Normally to be taken during the first year of college study) 1. Towson Seminar (3 credit hours) Applicable Learning

More information

Robot Programming Manual

Robot Programming Manual 2 T Program Robot Programming Manual Two sensor, line-following robot design using the LEGO NXT Mindstorm kit. The RoboRAVE International is an annual robotics competition held in Albuquerque, New Mexico,

More information

RUNNYMEDE COLLEGE & TECHTALENTS

RUNNYMEDE COLLEGE & TECHTALENTS RUNNYMEDE COLLEGE & TECHTALENTS Why teach Scratch? The first programming language as a tool for writing programs. The MIT Media Lab's amazing software for learning to program, Scratch is a visual, drag

More information

Investigation and Exploration Dynamic Geometry Software

Investigation and Exploration Dynamic Geometry Software Investigation and Exploration Dynamic Geometry Software What is Mathematics Investigation? A complete mathematical investigation requires at least three steps: finding a pattern or other conjecture; seeking

More information

EDUCATIONAL ROBOTICS' INTRODUCTORY COURSE

EDUCATIONAL ROBOTICS' INTRODUCTORY COURSE AESTIT EDUCATIONAL ROBOTICS' INTRODUCTORY COURSE Manuel Filipe P. C. M. Costa University of Minho Robotics in the classroom Robotics competitions The vast majority of students learn in a concrete manner

More information

S.P.Q.R. Legged Team Report from RoboCup 2003

S.P.Q.R. Legged Team Report from RoboCup 2003 S.P.Q.R. Legged Team Report from RoboCup 2003 L. Iocchi and D. Nardi Dipartimento di Informatica e Sistemistica Universitá di Roma La Sapienza Via Salaria 113-00198 Roma, Italy {iocchi,nardi}@dis.uniroma1.it,

More information

Autonomous Systems at Gelsenkirchen

Autonomous Systems at Gelsenkirchen Autonomous Systems at Gelsenkirchen Hartmut Surmann Applied University of Gelsenkirchen, Neidenburgerstr. 43 D-45877 Gelsenkirchen, Germany. hartmut.surmann@fh-gelsenkirchen.de Abstract. This paper describes

More information

Indiana K-12 Computer Science Standards

Indiana K-12 Computer Science Standards Indiana K-12 Computer Science Standards What is Computer Science? Computer science is the study of computers and algorithmic processes, including their principles, their hardware and software designs,

More information

Lesson Sampling Distribution of Differences of Two Proportions

Lesson Sampling Distribution of Differences of Two Proportions STATWAY STUDENT HANDOUT STUDENT NAME DATE INTRODUCTION The GPS software company, TeleNav, recently commissioned a study on proportions of people who text while they drive. The study suggests that there

More information

Find the coordinates of the midpoint of a segment having the given endpoints.

Find the coordinates of the midpoint of a segment having the given endpoints. G.(2) Coordinate and transformational geometry. The student uses the process skills to understand the connections between algebra and geometry and uses the one- and two-dimensional coordinate systems to

More information

EV3 Advanced Topics for FLL

EV3 Advanced Topics for FLL EV3 Advanced Topics for FLL Jim Keller GRASP Laboratory University of Pennsylvania August 14, 2016 Part 1 of 2 Topics Intro to Line Following Basic concepts Calibrate Calibrate the light sensor Display

More information

EDUCATORS INFORMATION GUIDE

EDUCATORS INFORMATION GUIDE EDUCATORS INFORMATION GUIDE TABLE OF CONTENTS Arduino Education: Inspiring, Teaching and Empowering What is Arduino? 5 The Education Team And Its Mission 5 Current Use Cases in Education 5 Features and

More information

Parts of a Lego RCX Robot

Parts of a Lego RCX Robot Parts of a Lego RCX Robot RCX / Brain A B C The red button turns the RCX on and off. The green button starts and stops programs. The grey button switches between 5 programs, indicated as 1-5 on right side

More information

E Technology: A. Innovations Activity: Introduction to Robotics

E Technology: A. Innovations Activity: Introduction to Robotics Science as Inquiry: As a result of their activities in grades 5 8, all students should develop Understanding about scientific inquiry. Abilities necessary to do scientific inquiry: identify questions,

More information

1.G.1 Distinguish between defining attributes. Build and draw shapes that possess K.G.3 Identify shapes as 2-D (flat) or 3-D (solid)

1.G.1 Distinguish between defining attributes. Build and draw shapes that possess K.G.3 Identify shapes as 2-D (flat) or 3-D (solid) Identify and describe shapes, including squares, circles, triangles, rectangles, hexagons, cubes, cones, cylinders, and spheres (Standards K.G.1 3). Standard K.G.1 Describe objects in the environment using

More information

Robotics using Lego Mindstorms EV3 (Intermediate)

Robotics using Lego Mindstorms EV3 (Intermediate) Robotics using Lego Mindstorms EV3 (Intermediate) Facebook.com/roboticsgateway @roboticsgateway Robotics using EV3 Are we ready to go Roboticists? Does each group have at least one laptop? Do you have

More information

Programming and Multi-Robot Communications

Programming and Multi-Robot Communications Programming and Multi-Robot Communications A pioneering group forges a path to affordable multi-agent robotics R obotic technologies are ubiquitous and are integrated into many modern devices yet most

More information

Math Shape and Space: Perimeter

Math Shape and Space: Perimeter F A C U L T Y O F E D U C A T I O N Department of Curriculum and Pedagogy Math Shape and Space: Perimeter Science and Mathematics Education Research Group Supported by UBC Teaching and Learning Enhancement

More information

A Rubik s Cube Solving Robot Using Basic Lego Mindstorms NXT kit

A Rubik s Cube Solving Robot Using Basic Lego Mindstorms NXT kit A Rubik s Cube Solving Robot Using Basic Lego Mindstorms NXT kit Khushboo Tomar Department of Electronics and Communication Engineering, Amity University, Sector-125, Noida 201313 (U.P.) India tomar2khushboo@gmail.com

More information

SPIRIT 2.0 Lesson: How Far Am I Traveling?

SPIRIT 2.0 Lesson: How Far Am I Traveling? SPIRIT 2.0 Lesson: How Far Am I Traveling? ===============================Lesson Header ============================ Lesson Title: How Far Am I Traveling? Draft Date: June 12, 2008 1st Author (Writer):

More information

Robotics Links to ACARA

Robotics Links to ACARA MATHEMATICS Foundation Shape Sort, describe and name familiar two-dimensional shapes and three-dimensional objects in the environment. (ACMMG009) Sorting and describing squares, circles, triangles, rectangles,

More information

Growing up with Robots Costa MFM and Fernandes JF

Growing up with Robots Costa MFM and Fernandes JF Growing up with Robots Costa MFM and Fernandes JF Introduction Piaget s theory of cognitive development [1] is considered a fundamental pedagogical tool that in different approaches, educators at different

More information

Content Area: Mathematics- 3 rd Grade

Content Area: Mathematics- 3 rd Grade Unit: Operations and Algebraic Thinking Topic: Multiplication and Division Strategies Multiplication is grouping objects into sets which is a repeated form of addition. What are the different meanings

More information

Chapter 14. using data wires

Chapter 14. using data wires Chapter 14. using data wires In this fifth part of the book, you ll learn how to use data wires (this chapter), Data Operations blocks (Chapter 15), and variables (Chapter 16) to create more advanced programs

More information

Connected Mathematics 2, 6 th and 7th Grade Units 2009 Correlated to: Washington Mathematics Standards for Grade 5

Connected Mathematics 2, 6 th and 7th Grade Units 2009 Correlated to: Washington Mathematics Standards for Grade 5 Grade 5 5.1. Core Content: Multi-digit division (Operations, Algebra) 5.1.A Represent multi-digit division using place value models and connect the representation to the related equation. 5.1.B Determine

More information

Instructors. Manual GEARED. After-School Robotics Program By Haley Hanson

Instructors. Manual GEARED. After-School Robotics Program By Haley Hanson Instructors GEARED UP Manual After-School Robotics Program By Haley Hanson Table of Contents Introduction 3 Before you Start 4 Program Overview 5 Proposed Timeline 6 Itemized Materials List and Sample

More information

MULTI-LAYERED HYBRID ARCHITECTURE TO SOLVE COMPLEX TASKS OF AN AUTONOMOUS MOBILE ROBOT

MULTI-LAYERED HYBRID ARCHITECTURE TO SOLVE COMPLEX TASKS OF AN AUTONOMOUS MOBILE ROBOT MULTI-LAYERED HYBRID ARCHITECTURE TO SOLVE COMPLEX TASKS OF AN AUTONOMOUS MOBILE ROBOT F. TIECHE, C. FACCHINETTI and H. HUGLI Institute of Microtechnology, University of Neuchâtel, Rue de Tivoli 28, CH-2003

More information

The light sensor, rotation sensor, and motors may all be monitored using the view function on the RCX.

The light sensor, rotation sensor, and motors may all be monitored using the view function on the RCX. Review the following material on sensors. Discuss how you might use each of these sensors. When you have completed reading through this material, build a robot of your choosing that has 2 motors (connected

More information

HANDS-ON TRANSFORMATIONS: DILATIONS AND SIMILARITY (Poll Code 44273)

HANDS-ON TRANSFORMATIONS: DILATIONS AND SIMILARITY (Poll Code 44273) HANDS-ON TRANSFORMATIONS: DILATIONS AND SIMILARITY (Poll Code 44273) Presented by Shelley Kriegler President, Center for Mathematics and Teaching shelley@mathandteaching.org Fall 2014 8.F.1 8.G.3 8.G.4

More information

Dokuz Eylul University, Turkey; 2 University of Tartu, Estonia

Dokuz Eylul University, Turkey; 2 University of Tartu, Estonia The Effects of Robotics Club on the Students Performance on Science Process & Scientific Skills and Perceptions on Robots, Human and Society Bulent Cavas 1, Teoman Kesercioglu 1, Jack Holbrook 2, Miia

More information

Chapter 1. Robots and Programs

Chapter 1. Robots and Programs Chapter 1 Robots and Programs 1 2 Chapter 1 Robots and Programs Introduction Without a program, a robot is just an assembly of electronic and mechanical components. This book shows you how to give it a

More information

Connecting Ardusat to the Next Generation Science Standards

Connecting Ardusat to the Next Generation Science Standards Connecting Ardusat to the Next Generation Science Standards David D. Thornburg, PhD Thornburg Center dthornburg@aol.com Abstract In 2013 the Next Generation Science Standards (NGSS) were published as national

More information

RIPPLES. 14 Patterns/Functions Grades 7-8 ETA.hand2mind. Getting Ready. The Activity On Their Own (Part 1) What You ll Need.

RIPPLES. 14 Patterns/Functions Grades 7-8 ETA.hand2mind. Getting Ready. The Activity On Their Own (Part 1) What You ll Need. RIPPLES Pattern recognition Growth patterns Arithmetic sequences Writing algebraic expressions Getting Ready What You ll Need Pattern Blocks, set per pair Colored pencils or markers Activity master, page

More information

K Mathematics Curriculum. Analyzing, Comparing, and Composing Shapes. Module Overview... i

K Mathematics Curriculum. Analyzing, Comparing, and Composing Shapes. Module Overview... i K Mathematics Curriculum G R A D E Table of Contents GRADE K MODULE 6 Analyzing, Comparing, and Composing Shapes GRADE K MODULE 6 Module Overview... i Topic A: Building and Drawing Flat and Solid Shapes...

More information

INTRODUCTION OF SOME APPROACHES FOR EDUCATIONS OF ROBOT DESIGN AND MANUFACTURING

INTRODUCTION OF SOME APPROACHES FOR EDUCATIONS OF ROBOT DESIGN AND MANUFACTURING INTRODUCTION OF SOME APPROACHES FOR EDUCATIONS OF ROBOT DESIGN AND MANUFACTURING T. Matsuo *,a, M. Tatsuguchi a, T. Higaki a, S. Kuchii a, M. Shimazu a and H. Terai a a Department of Creative Engineering,

More information

Engaging Solutions for Applied Learning Programme

Engaging Solutions for Applied Learning Programme Engaging Solutions for Applied Learning Programme Aesthetics Applied Science Engineering & Robotics Environmental Science & Sustainable Living Health Science & Healthcare Technology ICT & Programming Experiential

More information

New Jersey Core Curriculum Content Standards for Science

New Jersey Core Curriculum Content Standards for Science A Correlation of to the New Jersey Core Curriculum Content Grades K -6 O/S-56 Introduction This document demonstrates how Scott Foresman Science meets the New Jersey Core Curriculum Content. Page references

More information

Ev3 Robotics Programming 101

Ev3 Robotics Programming 101 Ev3 Robotics Programming 101 1. EV3 main components and use 2. Programming environment overview 3. Connecting your Robot wirelessly via bluetooth 4. Starting and understanding the EV3 programming environment

More information

Problem of the Month: Between the Lines

Problem of the Month: Between the Lines Problem of the Month: Between the Lines Overview: In the Problem of the Month Between the Lines, students use polygons to solve problems involving area. The mathematical topics that underlie this POM are

More information

Proseminar Roboter und Aktivmedien. Outline of today s lecture. Acknowledgments. Educational robots achievements and challenging

Proseminar Roboter und Aktivmedien. Outline of today s lecture. Acknowledgments. Educational robots achievements and challenging Proseminar Roboter und Aktivmedien Educational robots achievements and challenging Lecturer Lecturer Houxiang Houxiang Zhang Zhang TAMS, TAMS, Department Department of of Informatics Informatics University

More information

Unit 4: Robot Chassis Construction

Unit 4: Robot Chassis Construction Unit 4: Robot Chassis Construction Unit 4: Teacher s Guide Lesson Overview: Paul s robotic assistant needs to operate in a real environment. The size, scale, and capabilities of the TETRIX materials are

More information