Showing posts with label Primary. Show all posts
Showing posts with label Primary. Show all posts

Thursday, 8 October 2015

Why is learning to code important?

Code Week EU  is 10th – 18th October 2015. This initiative aims to bring coding and digital literacy to everybody, in a fun and engaging way.

The question is though, why?

Well, as they mention on their website, the way we live has changed dramatically. The way we work, communicate, shop and think. Learning to code doesn’t just build a sense of how tech works, but also helps people to develop skills to adapt to living in this new era.

There are ways to get involved – we’ve summarised them from the Code Week EU website.

Organise an event
-    Toolkit for organisers
-    Add an event here

Code Week EU ambassadors are on hand to help, just click here for more information.

Join an event

-    Look for an event near you
-    Here’s a list of resources to help get you started

Can’t organise an event or join one? Then spread the word!
-    Code Week EU blog

-    Join in on Twitter with #CodeEU and @CodeWeekEU or Like and Share on Facebook

Last but not least, is our own suggestion: Get stuck in!

There is some great advice out there on coding/programming/computing. This is regardless of your level of knowledge, understanding or experience with these topics. This comes in many forms – experts’ blog posts (see ICT Evangelist for a good start), websites (Computing At School) or through exploring Twitter hashtags. You could also explore our blog – see ‘Which programming language should you choose?’ and ‘What is computational thinking?’ for some interesting ideas.

To support the initiative, we have made our computing apps 3 for the price of 1. For the whole of Code Week.

There are six apps – three for 8-11 year olds and three for 11-14s. They cover lots of different topics and ideally, they are worked on in small groups. You only need one iPad per small group though, as that’s how the apps are designed.

Each bundle of three apps is £1.49/€1.99/US$1.99 – which is the cost of ONE app on its own.

8-11 years: click here
11-14 years: click here

8-11 years



11-14 years

Thursday, 2 April 2015

What’s the password?!

It can be tricky thinking of engaging ways to help explain some topics on the new computing curriculum. One idea is to find a 'real life' problem and reflect it in that; so when it came to designing a task for the topic of ‘using logic reasoning to explain algorithms’, I was debating what would be best to use.


It was during this ‘thinking period’ that I tried to enter my kitchen at home, to be met with "what's the password?" My seven year old daughter does this quite often: she loves the idea of passwords. Soon after, I was allowed in when I guessed one of the usuals (the word 'purple') and I thought of the idea for our new task.

With so many login details that we as adults even struggle to remember, creating strong yet memorable passwords is important for us as well. Bob and his family were created - a family of four who struggle to remember passwords, so Bob, the father, creates an easy-to-use algorithm for his family which they can all use, yet it produces different passwords depending on what's in each 'variable'. 

It’s a ‘current’ topic and a problem of many, but also a simple and effective way of explaining how an algorithm works. It also made for a mystery which adds to the digital literacy section of the curriculum – keeping personal information private!

I personally use an algorithm for creating passwords, and it's worked great for me so far, so what's good for me is good for Bob! The main thing is it creates a memorable and strong password for any website based on a combination of input variables and some rules. These are simple inputs such as their names, a secret number and a website name. It will help with explaining a number of concepts in one go.

One of the slips
By introducing all this through a story about a person coming up with a way to help his wife and kids generate and remember passwords, it is possible to include all these ideas into a nice story thread that will not intimidate KS2 students. This can also be used to explain how the same algorithm generates different outputs based on different initialization values and input variables. It can also challenge students to come up with their own password generation algorithms.

Students need to understand that algorithms are not limited to computer programs and this task provides a good example of one that they can use any time – such as to stop unauthorized people going into kitchens.

You can find out more about this mystery by clicking here. To try it (£1.49), search 'Digital Mysteries Algorithm' on the App Store or click here. To download a trial of the Windows PC/laptop software click here.

Sunday, 1 June 2014

Computational Thinking

There is more to computer science than programming

The new Computing At Schools (CAS) curriculum puts ‘Computational Thinking’ as a main feature of the program of study. At first, I didn’t pay special attention to the term; I thought as long as it’s something related to programmers and computer scientists, then I must have been doing it for years now anyway, so there’s no need for me to worry about what exactly it means.

With me now being a big supporter of CAS though, I thought I should get a proper understanding of what ‘Computational Thinking’ accurately refers to. After looking at quite a lot of definitions and explanations from different sources, I believe I now have a reasonable understanding of it, but I’ve also realized that this understanding wasn’t gained from one single source but actually by a combination of many.

The top five sources I found useful and that I’ve used in the description below (directly or indirectly), are:

I have two goals for writing this post:
1. To try and provide a simpler description of the term (ideally to spare you having to go through all the sources that I have)

2.  To almost test my own understanding of what information I’ve read, by writing a summary of it – one I can go back to if needed

The term ‘computational thinking’ was first coined by Jeannette M. Wing in 2006.  In a later article of hers (computational-thinking-what-and-why) she referred to the following definition:
Computation thinking is the thought processes involved in formulating problems and their solutions so that the solutions are represented in a form that can be effectively carried out by an information-processing agent1” (an information processing agent can be a human, a machine or a combination of both).

It is reworking what we see as a difficult problem into one we know how to solve. When faced with such a problem, computational thinking addresses the question ‘what is computable?"

From the sources above combined with my own experience, I’ve compiled a list of some of the actions used during computational thinking. The first, in many cases, is ‘decomposition’ which involves breaking up a big task into smaller sub-tasks to make it easier to understand and manage. The following activities are usually applied to these sub-tasks:

Pattern recognition: Using collected data to identify patterns or anomalies.
Example
Being able to read others’ hand writing is done by identifying the general pattern of the letters and comparing them with the example patterns of each letter that we have in our head. Those that we can’t recognize are anomalies in this case. We also identify patterns in people’s behaviour depending on different stimulus and build our future interactions with them accordingly.

Abstraction and pattern generalization: Filtering out unnecessary information for a certain context and keeping only what is generalizable.

Example
: ) is an ‘abstraction’ of a smiling face. Only the very general features of a smiling face are kept (a curved mouth and two eyes). Everything else about the face is left out, yet everybody knows that a colon and a right bracket is a smiley face.

In some cases, multiple layers of abstraction are used to bridge the gap between what is considered useable/understandable by humans and what a machine can use. All ‘easy-to-use’ computer programming languages  use it to turn the 1s and 0s that the hardware deals with into a human readable presentation.

Algorithm design:
developing a step-by-step strategy for solving a problem (one that others can follow without thinking). It’s particularly useful when a  task needs to be repeated multiple times or when a task needs to be carried out by others (including machines)

Example
Preparing a cooking recipe for a friend

Prefetching and caching in anticipation of future use.

Example

Putting things into a school bag or travel bag is ‘prefetching’ for future use. Keeping a tool next to you in case it is needed or to avoid fetching it again is ‘caching’ with the aim of saving time.

Making trade-offs between time, storage space, processing power and complexity.
Example

Should you, very quickly, put the things you need for a trip in a big bag, or spend time to pack things very efficiently into a smaller bag (time vs storage)

Approximation: considering if approximating the current problem into a simpler one (either by simplifying the problem itself, or the information available) will still give us good enough results.
Example
If I need to roughly estimate the cost of a shopping list in a shop, do I need to use the exact prices up to the penny when adding numbers, or can I just approximate to the nearest pound (or in the unlikely case of a very expensive shopping list, to the nearest ten or even a hundred pound!)

Performance modelling

Example
Which line should you stand in at the supermarket, or which route should you choose when travelling to a certain destination?

Apart from the activities above, there are certain approaches to solving problems used quite often in programming that we benefit from in real life without knowing that these are well defined techniques with jargon names such as a ‘binary search tree’. You’ve probably used ‘binary search tree’ without knowing that it has a name and here's an example for it:

A computational thinking example: Guess a number

A few days ago, I was playing ‘guess the number’ with my 7 year old daughter. One of us thinks of a number between 1 and 100 and the other has to guess it. After a few tries, she noticed that I normally guess her ‘secret’ number faster than she guesses mine. So she asked me how I did this. What I was actually doing was using a ‘binary search tree’ technique to guess the number. I explained to her in the simplest way I could think of that she should always give a guess that is the number ‘roughly’ in the middle of the remaining range and she is guaranteed to guess the number in no more than 7 guesses (obviously without explaining why).
I compared this to her random guessing technique and told her that in this case, that may require many more attempts (100 in the very worst case). She obviously experimented with several examples before taking my word for it.

This is a very simple use of computational thinking to show off in front of a 7 year old: “I can guarantee you I’ll guess your secret number in no more than 7 attempts, or to make it more interesting, a number between 1 and a 1000, in no more than 10 guesses”.

Suppose the range is 1-100 and the selected number is 17 (the following scenario is a worst case scenario):

1- Is the number 50? (No - smaller)
2- Is the number 25? (No - smaller)
3- Is the number 12? (No - larger)
4- Is the number 18? (No - smaller)
5- Is the number 15? (No - larger)
6- Is the number 16? (No – larger)
7- The number is 17

Another practical example of computational thinking is using sorting to speed-up search. If you are the person in front of the CD player at a karaoke party with a 100 CDs, finding the required songs will be much faster if these CDs are sorted alphabetically than if they are in a random pile. When the CDs are sorted, your brain is doing some form of binary search to quickly find the right one without you even realizing it. Combining sorting and binary search is one of the most widely used searching techniques in computing.

Back to the term

According to Wing, Computational thinking is not an optional skill, but a fundamental one that everybody should learn, to function in our modern society. It complements and combines mathematical and engineering thinking.

Computational thinking is not just about computer software, but also the concepts we use to solve problems in our daily lives.

1- Jan Cuny, Larry Snyder and Jeannette M. Wing, "Demystifying Computational Thinking for Non-Computer Scientists," work in progress, 2010.