Using Educational Robotics to Motivate Complete AI Solutions

Total Page:16

File Type:pdf, Size:1020Kb

Using Educational Robotics to Motivate Complete AI Solutions AI Magazine Volume 27 Number 1 (2006) (© AAAI) Articles Using Educational Robotics to Motivate Complete AI Solutions Lloyd Greenwald, Donovan Artz, Yogi Mehta, and Babak Shirmohammadi ■ Robotics is a remarkable domain that may be suc- (Nilsson1984) to more recent work on multia- cessfully employed in the classroom both to moti- gent systems and machine learning in vate students to tackle hard AI topics and to pro- RoboCup (Stone 2000). vide students experience applying AI represen- In addition to providing inspiration, explor- tations and algorithms to real-world problems. ing artificial intelligence representations and This article uses two example robotics problems to illustrate these themes. We show how the robot ob- algorithms using robotics helps students to stacle-detection problem can motivate learning learn complete solutions. A complete solution neural networks and Bayesian networks. We also is one in which a student considers all the de- show how the robot-localization problem can mo- tails of implementing AI algorithms in a real- tivate learning how to build complete solutions world environment. These details range from based on particle filtering. Since these lessons can system design, to algorithm selection and im- be replicated on many low-cost robot platforms plementation, to behavior analysis and experi- they are accessible to a broad population of AI stu- mentation, to making the solution robust in dents. We hope that by outlining our educational the face of uncertainty. In our classes we find exercises and providing pointers to additional re- sources we can help reduce the effort expended by that robotics problems encourage students to other educators. We believe that expanding hands- investigate how AI algorithms interact with on active learning to additional AI classrooms pro- each other, with non-AI solutions, and with a vides value both to the students and to the future real-world environment. Students investigate of the field itself. how to convert sensor data into internal data structures, how to weigh the costs and benefits of physical exploration, whether or not to use rtificial intelligence has a number of offline simulation and tools, and how to deal wonderful domains that help motivate with the severe resource limitations and time Aundergraduate students to enroll in AI constraints of embedded computation. Despite courses and work hard to grasp advanced AI the added costs of building complete solutions, representations and algorithms. One particu- experience with real-world environments helps larly compelling domain is robotics. Robotics ground lessons and stimulates thinking about combines the fantasy of science fiction with new challenges and solutions. practical real-world applications and engages Although robotics has inspired research on both the imaginative and sensible sides of stu- AI representations and algorithms, until re- dents. Examples of robotics-inspired AI span cently the cost and size of these platforms has from early work on AI planning with Shakey made it difficult to convey the same line of in- Copyright © 2006, American Association for Artificial Intelligence. All rights reserved. 0738-4602-2006 / $2.00 SPRING 2006 83 Articles vestigation to undergraduate students. Low- neural networks or Bayesian networks and im- cost robot platforms, as surveyed earlier in this plementing the solution on a Handy Board– issue (Dodds et al. 2006), have the potential to based robot. The second theme is presented in mitigate this cost barrier. Investigators have be- the context of solving a robot-localization gun to report successful demonstrations of problem using particle filtering and imple- hands-on robotics using low-cost platforms in menting the solution on an RCX-based robot. AI courses (Greenwald and Kopena 2003; May- The projects described in this article were de- er, Weinberg, and Yu 2004, Dodds et al. 2004). signed primarily as part of a stand-alone robot- These reports, as well as the instructional mate- ics course for computer science majors. The rial on advanced AI topics in this special issue, hands-on topics covered in this course include provide critical supplements to existing texts robot structure, drive trains, sensors (infrared, and curricular material on general undergradu- photo, bump, active sonar), control (open ate artificial intelligence, engineering, and loop, closed loop), simple behaviors (obstacle computer science topics. detection, light following, obstacle avoidance), Even at low cost ($300–$600 per robot kit), it reactive control, multiple behavior coordina- is possible to teach advanced AI with the hard- tion (algorithmic, priority-based, subsump- ware and software resources of these platforms. tion), odometry using wheel encoders, forward Low-cost platforms provide varying levels of kinematics and localization, inverse kinemat- mobility, sensors, development environments, ics, way-point navigation, simple feature detec- and processing power. Lego-based platforms tion using sonar, probabilistic localization, lo- like the RCX (Klassner 2002), or Handy Board cal and global map building, sensor fusion, (Martin 1999) are designed for flexible experi- vector field histograms, and simple path plan- mentation with mobility. Development envi- ning. For interested students this course pro- ronments include many standard program- vides hands-on experience that complements ming languages like Java, C, Pascal, Forth, and material taught in artificial intelligence courses ADA. Even Lisp is available, as detailed else- for advanced undergraduate and early graduate where in this issue of AI Magazine (Klassner students. The projects in this article have also 2006). Commonly available sensors include been used in workshops, including a recent photoresistors, infrared, touch, wheel encoders NSF-sponsored workshop for teachers learning (for odometry), and, most impressively, sonar. to use the RCX in education. Please refer to Greenwald and Kopena (2003) and Greenwald With respect to implementing advanced AI al- and Artz (2004) for further information on the gorithms, the processing power of low-cost structure and labs of this course. platforms can be problematic. At the low end, we get from 2 megahertz to 16 megahertz of central processing unit (CPU) speed and around 32 kilobytes of random-access memory Obstacle Detection with Neural (RAM). The education lessons discussed in this Networks, Bayesian Networks, article have been carefully designed to work successfully with such constrained resources. and the Handy Board We have found that these resource constraints A typical task in a robotics class is to program a often provide additional educational opportu- robot to detect and avoid obstacles. In our ro- nities to investigate AI topics like resource- bot-building lab course (Greenwald and Kope- bounded reasoning. These platforms addition- na 2003) we initially assigned this as a non-AI ally provide communications protocols so that exercise in processing noisy sensor readings. off-board processing can be included in com- We chose to use inexpensive and unreliable in- plete AI solutions. frared sensors as proximity detectors for this We have used low-cost robot platforms in exercise. In lectures we taught students stan- the classroom to teach many AI topics includ- dard methods for processing sensor data, in- ing heuristic search, planning, probabilistic cluding ambient light correction, surface re- planning, representing uncertainty, and ma- flectance calibration, thresholding, averaging, chine learning. In this article, we outline our and hysteresis. The students were later asked to classroom-tested material for teaching Bayesian use these processing methods to classify sensor networks, neural networks, and particle filter- data into one of four obstacle position states: ing. This article is organized around the two ed- left, right, center, or none. ucational themes just introduced: (1) robotics This seemingly simple exercise repeatedly problems motivate AI solutions, and (2) robotics led to frustration and failure. Students reported problems encourage complete AI solutions. The frequent invalid infrared readings in any non- first theme is presented in the context of solv- shielded application, indicating that these sen- ing a robot obstacle-detection problem using sors were useless as proximity detectors for ob- 84 AI MAGAZINE Articles stacle detection and avoidance. The following mitter while detecting the ambient light being exercise helped us determine whether the received by the IR sensor’s receiver. source of the problem was the sensors or the The IR sensor transmits infrared light away programmers, and at the same time uncovered from the robot. Reflected IR signals are received our first educational theme: robotics problems if an object is sufficiently near the sensor. The motivate AI solutions. color, surface texture, angle, and other factors We initiated a project to see whether or not affect the distance required to register reflected these sensors were actually useless. The result- IR signals in the IR sensor’s receiver. High ing project demonstrated not only that these amounts of reflected infrared light yield high inexpensive sensors could be used for obstacle signal values. If there is little or no reflected in- detection but also that their inherent unrelia- frared, the IR sensor’s receiver registers a low bility provides a practical motivation for teach- signal value. ing advanced artificial intelligence techniques The sensors are placed approximately in a for sensor processing.
Recommended publications
  • An Exploratory Study of a Robotics Educational Platform On
    AN EXPLORATORY STUDY OF A ROBOTICS EDUCATIONAL PLATFORM ON STEM CAREER INTERESTS IN MIDDLE SCHOOL STUDENTS by TRACY BARGER HINTON MARGARET L. RICE, COMMITTEE CHAIR ANGELA BENSON ROBERT MAYBEN REBECCA ODOM-BARTEL VIVIAN WRIGHT A DISSERTATION Submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in the Department of Educational Leadership, Policy, and Technology Studies in the Graduate School of The University of Alabama TUSCALOOSA, ALABAMA 2017 Copyright Tracy Barger Hinton 2017 ALL RIGHTS RESERVED ABSTRACT With the large expected growth in STEM-related careers in American industries, there are not enough graduates to fill these positions (United States Department of Labor, 2015). Increased efforts are being made to reform STEM education from early childhood to college level studies, mainly through increased efforts to incorporate new technologies and project-based learning activities (Hegedorn & Purnamasari, 2012). At the middle school level, a robotics educational platform can be a worthwhile activity that provides hands-on learning as students learn basic programming and engineering skills (Grubbs, 2013). Based on the popularity of LEGO toys, LEGO Education developed an engaging and effective way to learn about computer programming and basic engineering concepts (Welch & Huffman, 2011). LEGO MINDSTORMS offers a project-based learning environment that engages students in real-life, problem-solving challenges. The purpose of this qualitative study was to investigate the instructional use of a robotics educational curriculum on middle school students’ attitudes toward and interests in STEM and their experiences with LEGO Robotics activities. Participants included 23 seventh grade students who were enrolled in a Career Cluster Technologies I class in a suburban middle school.
    [Show full text]
  • A Modular, Reconfigurable Mold for a Soft Robotic Gripper Design Activity
    ORIGINAL RESEARCH published: 26 September 2017 doi: 10.3389/frobt.2017.00046 A Modular, reconfigurable Mold for a Soft Robotic Gripper Design Activity Jiawei Zhang1, Andrew Jackson2,3, Nathan Mentzer2,3 and Rebecca Kramer1,4* 1 School of Mechanical Engineering, Purdue University, West Lafayette, IN, United States, 2 Polytechnic Institute, Purdue University, West Lafayette, IN, United States, 3 College of Education, Purdue University, West Lafayette, IN, United States, 4 Department of Mechanical Engineering and Materials Science, Yale University, New Haven, CT, United States Soft robotics is an emerging field with strong potential to serve as an educational tool due to its advantages such as low costs and shallow learning curves. In this paper, we introduce a modular and reconfigurable mold for flexible design of pneumatic soft robotic grippers. By using simple assembly kits, students at all levels are able to design and construct soft robotic grippers that vary in function and performance. The process of constructing the modular mold enables students to understand how design choices impact system performance. Our unique modular mold allows students to select the number and length of fingers in a gripper, as well as to adjust the internal geometry of the pneumatic actuator cavity, which dictates how and where bending of a finger occurs. In addition, the mold may be deconstructed and reconfigured, which allows for fast iterative design and lowers material costs (since a new mold does not need to be made Edited by: Matteo Cianchetti, to implement a design change). We further demonstrate the feasibility of the modular Sant’Anna School of Advanced mold by implementing it in a soft robot design activity in classrooms and showing a Studies, Italy sufficiently high rate of student success in designing and constructing a functional soft Reviewed by: Gursel ALICI, robotic gripper.
    [Show full text]
  • Using Robotics to Enhance Active Learning in Mathematics: a Multi-Scenario Study
    mathematics Article Using Robotics to Enhance Active Learning in Mathematics: A Multi-Scenario Study Edgar Lopez-Caudana 1,* , Maria Soledad Ramirez-Montoya 2, Sandra Martínez-Pérez 3 and Guillermo Rodríguez-Abitia 4 1 Tecnologico de Monterrey, School of Engineering and Sciences, Mexico City 14380, Mexico 2 Tecnologico de Monterrey, School of Humanities and Education, Monterrey 64849, Mexico; [email protected] 3 Department of Didactics and Educational Organization, Faculty of Education, University of Barcelona, 08035 Barcelona, Spain; [email protected] 4 General Direction of Computing and Information and Communications Technologies, Universidad Nacional Autónoma de México, Mexico City 04510, Mexico; [email protected] * Correspondence: [email protected] Received: 31 October 2020; Accepted: 27 November 2020; Published: 4 December 2020 Abstract: The use of technology, which is linked to active learning strategies, can contribute to better outcomes in Mathematics education. We analyse the conditions that are necessary for achieving an effective learning of Mathematics, aided by a robotic platform. Within this framework, the question raised was “What are the conditions that promote effective active math learning with robotic support?” Interventions at different educational scenarios were carried in order to explore three educational levels: elementary, secondary, and high school. Qualitative and quantitative analyses were performed, comparing the control and treatment groups for all scenarios through examinations, direct observations, and testimonials. The findings point to three key conditions: level, motivation, and teacher training. The obtained results show a very favourable impact on the attention and motivation of the students, and they allow for establishing the conditions that need to be met for an effective relationship between the teacher and the technological tool, so that better learning outcomes in Mathematics are more likely to be obtained.
    [Show full text]
  • Robots in Education: New Trends and Challenges from the Japanese Market
    Themes in Science & Technology Education, 6(1), 51-62, 2013 Robots in education: New trends and challenges from the Japanese market Fransiska Basoeki1, Fabio Dalla Libera2, Emanuele Menegatti2 , Michele Moro2 [email protected], [email protected], [email protected], [email protected] 1 Department of System Innovation, Osaka University, Suita, Osaka, 565-0871 Japan 2 Department of Information Engineering, University of Padova, Italy Abstract. The paper introduces and compares the use of current robotics kits developed by different companies in Japan for education purposes. These kits are targeted to a large audience: from primary school students, to university students and also up to adult lifelong learning. We selected company and kits that are most successful in the Japanese market. Unfortunately, most information regarding the technical specifications, the practical usages, and the actual educational activities carried out with these kits are currently available in Japanese only. The main motivation behind this paper is to give non-Japanese speakers interested in educational robotics an overview of the use of educational kits in Japan. The paper is completed by a short description of a new pseudo-natural language we propose for effectively programming one of the presented robots, the educational humanoid Robovie-X. Keywords: educational robot kits, humanoid robots, wheeled robots, education Introduction With the advance of technology, robotics have been successfully used and integrated into different sectors of our life. Industrial robot arms almost completely replaced the manual workload. Service robots, such as Roomba, serve as home helpers in the households, dusting the house automatically. Also in the field of entertainment, many robots have also been developed, the robot dog AIBO provides a successful example of this.
    [Show full text]
  • An Edutainment Robotics Survey Henrik Hautop Lund Jacob Nielsen
    In Proceedings of the Third International Symposium on Human and Artificial Intelligence Systems: The Dynamic Systems Approach for Embodiment and Sociality, Fukui, Dec 6-7, 2002 (HART2002). An Edutainment Robotics Survey Henrik Hautop Lund Jacob Nielsen Maersk Mc-Kinney Moller Institute for Production Technology University of Southern Denmark, Campusvej 55, 5230 Odense M., Denmark [email protected] [email protected] www.adaptronics.dk Abstract. In this survey, we describe different categories of edutainment robots. We classify these in robots with no interaction, with limited interaction, and extensive interaction possibilities. A non-exhaustive market survey shows that there are numerous edutainment robots in all categories, and psychological considerations suggest that the systems with extensive interaction and construction possibilities may provide advantages, in some cases. In order to explore these categories, we made development for all three categories and describe the experiments briefly. 1 Introduction The term "edutainment" is a gathering of the words education and entertainment, and has been around for about 10 years. The general concept of edutainment is to make learning fun, based on the philosophy that children learn faster when playing their way to knowledge. Originally the term edutainment was invented with regards to educative computer programs, but the term certainly covers almost every toy that have been around for as long as children have been playing, as playing in itself is an educative act. Most of the robotic games for children were developed by putting emphasis on an educational approach, in which the children are allowed to learn about technology in Piaget’s manner. However, we find that it is not enough just to promote this kind of learning.
    [Show full text]
  • Report of Comest on Robotics Ethics
    SHS/YES/COMEST-10/17/2 REV. Paris, 14 September 2017 Original: English REPORT OF COMEST ON ROBOTICS ETHICS Within the framework of its work programme for 2016-2017, COMEST decided to address the topic of robotics ethics building on its previous reflection on ethical issues related to modern robotics, as well as the ethics of nanotechnologies and converging technologies. At the 9th (Ordinary) Session of COMEST in September 2015, the Commission established a Working Group to develop an initial reflection on this topic. The COMEST Working Group met in Paris in May 2016 to define the structure and content of a preliminary draft report, which was discussed during the 9th Extraordinary Session of COMEST in September 2016. At that session, the content of the preliminary draft report was further refined and expanded, and the Working Group continued its work through email exchanges. The COMEST Working Group then met in Quebec in March 2017 to further develop its text. A revised text in the form of a draft report was submitted to COMEST and the IBC in June 2017 for comments. The draft report was then revised based on the comments received. The final draft of the report was further discussed and revised during the 10th (Ordinary) Session of COMEST, and was adopted by the Commission on 14 September 2017. This document does not pretend to be exhaustive and does not necessarily represent the views of the Member States of UNESCO. – 2 – REPORT OF COMEST ON ROBOTICS ETHICS EXECUTIVE SUMMARY I. INTRODUCTION II. WHAT IS A ROBOT? II.1. The complexity of defining a robot II.2.
    [Show full text]
  • Smart Learning with Educational Robotics Linda Daniela Editor
    Smart Learning with Educational Robotics Linda Daniela Editor Smart Learning with Educational Robotics Using Robots to Scaffold Learning Outcomes Editor Linda Daniela Faculty of Education, Psychology, & Art University of Latvia Rīga, Latvia ISBN 978-3-030-19912-8 ISBN 978-3-030-19913-5 (eBook) https://doi.org/10.1007/978-3-030-19913-5 © Springer Nature Switzerland AG 2019 This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed. The use of general descriptive names, registered names, trademarks, service marks, etc. in this publication does not imply, even in the absence of a specific statement, that such names are exempt from the relevant protective laws and regulations and therefore free for general use. The publisher, the authors, and the editors are safe to assume that the advice and information in this book are believed to be true and accurate at the date of publication. Neither the publisher nor the authors or the editors give a warranty, express or implied, with respect to the material contained herein or for any errors or omissions that may have been made. The publisher remains neutral with regard to jurisdictional claims in published maps and institutional affiliations. This Springer imprint is published by the registered company Springer Nature Switzerland AG.
    [Show full text]
  • The Robotic Gaze: a Hypothesis of Visual Production Using Technological Image/Thinking
    Note: This work is currently in publishing in 'L'immagine contemporanea: natura, forme, valori' This is a pre-print version. Cite as: Denicolai, L. (2020). The robotic gaze: A hypothesis of visual production using technological image/thinking. MediarXiv preprint. The robotic gaze: A hypothesis of visual production using technological image/thinking Lorenzo Denicolai Introduction The relationship between man and robots, as a technological form, has been depicted many times over the years in a variety of narrative media. The earlest known of these depictions is R.U.R. by Czech playwright Karel Capek (1920): Robots created in the laboratory of Dr. Rossum are a form of primitive hybridization between human genes and technological elements, creating a sort of cyborg ante litteram. Since then, robots have been portrayed in many literary works—Isaac Asimov1 dedicated his collection The Complete Robot to these machines, and Philip K. Dick’s Do Androids Dream of Eletric Sheep is one of the most famous of these stories. In the same way, cinema has also often used man-robot relationships as an inspiration, highlighting and translating into images some of the natural inclinations of humanity to place (conditional) confidence in its potential substitute simulacra. Some of the most famous of these films include Westworld (Crichton, 1973), The Black Hole (1979, Nelson), Terminator (1984, Cameron), Bicentennial Man (1999, Columbus), Wall-E (2008, Stanton), Robot & Frank (2012, Schreier), and Ex Machina (2015, Garland). To these, it is important to add the disturbing intelligence of HAL9000 in 2001: A Space Odyssey (Kubrick, 1969), the dystopic atmosphere of Blade Runner (1982, Scott), the Matrix trilogy (1999-2003, Wachowski siblings), as well as some television serials, such as Battlestar Galactica (2004-2009, Moore), Black Mirror (2011–, Brooker), and older series such as The Six Million Dollar Man (1974–1978), in which one could glimpse the precursor of the cyborg (Haraway, 2006; Clark, 2004; Hansen, 2004; 2006; Hayles, 2006; Verbeek, 2008).
    [Show full text]
  • A Low Cost and Sustainable Remotely Operated Vehicles Educational Program
    sustainability Article EDUROVs: A Low Cost and Sustainable Remotely Operated Vehicles Educational Program Xavier Cufí 1,* , Albert Figueras 1, Eduard Muntaner 1, Remei Calm 1, Eduardo Quevedo 2 , Daura Vega 3, Josefina Loustau 4, José Juan Gil 4 and Joaquín H. Brito 4 1 Institute of Computer Vision and Robotics, University of Girona, E.P.S., 17071 Girona, Spain; albert.fi[email protected] (A.F.); [email protected] (E.M.); [email protected] (R.C.) 2 Institute for Applied Microelectronics (IUMA), University of Las Palmas de Gran Canaria (ULPGC), 35017 Las Palmas de Gran Canaria, Spain; [email protected] 3 Chemistry Department, University of Las Palmas de Gran Canaria (ULPGC), 35017 Las Palmas de Gran Canaria, Spain; [email protected] 4 Oceanic Platform of the Canary Islands (PLOCAN), 35214 Telde, Spain; josefi[email protected] (J.L.); [email protected] (J.J.G.); [email protected] (J.H.B.) * Correspondence: xavier.cufi@udg.edu; Tel.: +34-972-41-8757 Abstract: EDUROV is an educational underwater robot proposal from the researchers of the Oceanic Platform of Canary Islands (PLOCAN) and the Computer Vision and Robotics research group of the University of Girona (VICOROB), launched in January 2012 with the support of the Spanish Foundation for Science and Technology (FECyT). This program has evolved in the last decade in order to make it more sustainable, allowing the teleoperation of underwater vehicles from anywhere in the world. EDUROVs have passed through several phases, beginning with a basic electronics robot, followed by the incorporation of open-source electronic prototyping platforms and finally Citation: Cufí, X.; Figueras, A.; reaching the current state of teleoperation.
    [Show full text]
  • A Systematic Review of Studies on Educational Robotics
    Journal of Pre-College Engineering Education Research (J-PEER) Volume 9 Issue 2 Article 2 2019 A Systematic Review of Studies on Educational Robotics Saira Anwar Purdue University, [email protected] Nicholas Alexander Bascou Rowan University, [email protected] Muhsin Menekse Purdue University, [email protected] See next page for additional authors Follow this and additional works at: https://docs.lib.purdue.edu/jpeer Part of the Educational Technology Commons, Engineering Education Commons, Robotics Commons, Science and Mathematics Education Commons, and the Science and Technology Studies Commons Recommended Citation Anwar, S., Bascou, N. A., Menekse, M., & Kardgar, A. (2019). A Systematic Review of Studies on Educational Robotics. Journal of Pre-College Engineering Education Research (J-PEER), 9(2), Article 2. https://doi.org/10.7771/2157-9288.1223 This document has been made available through Purdue e-Pubs, a service of the Purdue University Libraries. Please contact [email protected] for additional information. This is an Open Access journal. This means that it uses a funding model that does not charge readers or their institutions for access. Readers may freely read, download, copy, distribute, print, search, or link to the full texts of articles. This journal is covered under the CC BY-NC-ND license. A Systematic Review of Studies on Educational Robotics Abstract There has been a steady increase in the number of studies investigating educational robotics and its impact on academic and social skills of young learners. Educational robots are used both in and out of school environments to enhance K–12 students’ interest, engagement, and academic achievement in various fields of STEM education.
    [Show full text]
  • A Methodological Approach to the Learning of Robotics with EDUROSC-Kids
    Journal of Intelligent & Robotic Systems (2021) 102: 34 https://doi.org/10.1007/s10846-021-01400-7 REGULAR PAPER A Methodological Approach to the Learning of Robotics with EDUROSC-Kids Raquel E. Patino-Escarcina˜ 1 · Dennis Barrios-Aranibar1 · Liz S. Bernedo-Flores1 · Pablo Javier Alsina2 · Luiz M. G. Gonc¸alves2 Received: 18 October 2020 / Accepted: 19 April 2021 / Published online: 17 May 2021 © The Author(s), under exclusive licence to Springer Nature B.V. 2021 Abstract With advances in science and technology, several innovative researches have been developed trying to figure out the main problems related to children’s learning. It is known that issues such as frustration and inattention, between others, affect student learning. In this fashion, robotics is an important resource that can be used towards helping to solve these issues, empowering our students in order to push their learning up. In this case, robotic tools are generally used considering two different paradigms: as the main focus and as a secondary focus. Actually, these paradigms define the way that Educational Robotics is implemented in schools. Most of the approaches have implemented it as the main focus, which is teaching Robotics. Nevertheless, there are quite a few works that implement robotics as a secondary focus, which is currently assisting the learning process in several disciplines. The main contribution of this work is a complete three steps methodology for Robotics in Education to guide projects in order to either use it alone or to teach robotics with others topics. Our experiments show the importance of devising a study plan and evaluation method because the process is iterative and could improve the final results.
    [Show full text]
  • Educational Robotics: Open Questions and New Challenges
    Themes in Science & Technology Education, 6(1), 63-71, 2013 Educational robotics: Open questions and new challenges Dimitris Alimisis [email protected] School of Pedagogical and Technological Education, Patras, Greece Abstract. This paper investigates the current situation in the field of educational robotics and identifies new challenges and trends focusing on the use of robotic technologies as a tool that will support creativity and other 21st-century learning skills. Finally, conclusions and proposals are presented for promoting cooperation and networking of researchers and teachers in Europe that might support the further development of the robotics movement in education. Keywords: educational robotics, constructionism, creativity Introduction During the last decade robotics has attracted the high interest of teachers and researchers as a valuable tool to develop cognitive and social skills for students from pre-school to high school and to support learning in science, mathematics, technology, informatics and other school subjects or interdisciplinary learning activities. This paper is based on ideas presented and discussed in the frame of a special discussion panel held during the International Workshop “Teaching Robotics, Teaching with Robotics” (TRTWR, 2012), which focused on the current situation in educational robotics at European level and examined ways for driving ahead the community and the robotics movement in education. The paper starts with an investigation of the state of the art in the field of educational robotics; then, existing problems and new challenges are discussed; finally, some proposals are presented for aligning robotic technology with learning theories, namely constructivism and constructionism, for promoting cooperation and networking of researchers and teachers and for building the educational robotics community in Europe.
    [Show full text]