-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grace - Added more problems #73
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! So nice to see all these new problems, the cover images are perfect also.
I really struggled to find any corrections at all, but after some time I did manage to find a couple small ones :D - comments inline.
But will merge these in now, so just make the corrections whenever next working on these.
Thanks again!
|
||
## Introduction | ||
|
||
This activity looks at the interesting concept of having a circle with n points on its perimeter and what happens when you joint those points up. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
n points
There are lots of ways you can make this problem more challenging and interesting, | ||
which include: | ||
|
||
- Add more lily pads, is it still possible with 6, 10 or N? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we format this as a table to keep images on the right and text on the left?
|
||
**So we just need to work out how many square numbers there are between 1 and 1000?** | ||
|
||
If we think about the larges square number less than 1000, **<span style="color:brown">30x30=900, 31x31=961,</span> <span style="color:red">32x32=1024</span>** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice idea to pass styling direct! I'm not sure why, but this isn't working (an issue with the app code I think), so I'll investigate at a future point.
For now to keep the emphasis for the final line I think we should just underine. I know markdown doesn't support this, but I think it will work with a <u>
tag, i.e.
<u style="color:red;">32x32=1024</u>
|
||
This is another problem where the solution seems impossible because there are too many things to consider (1000 monkeys!), but again becomes achievable once simplified and able to see patterns. To start the problem you should ensure students understand the rules, perhaps imitating with 4 students and the same number of coins or cards that can be flipped to face up or down. | ||
|
||
The first student flip all cards up (u): [u, u, u, u] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might be easier to format as a table than using spaces, but it is still fine like this
@@ -0,0 +1,90 @@ | |||
# Two Eggs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was such a long set of notes! Looks great, a few very minor typos:
-
If you search for
<sup>
(space at start) you will see a 6 places where theth
is not next to the number, e.g.50 <sup>th</sup>
-
There are also a couple headings where it would be good to include the
<sup>
, e.g. What happens if the egg breaks from the 14 th floor?`
Rebase #72 to pull into master branch