»
S
I
D
E
B
A
R
«
Aleph Null
Sep 5th, 2010 by neil

On Math for Primates Episode 14! Infinity and Beyond Nick and Tom make a joke about the Aleph Null set sounding like a Mexican wrestlers name.

So I took this idea and created an image of Tom and Nick as Lucha libre wrestlers. They are the Aleph Null tag team.

Tom and Nick as Aleph Null Lucha libre wrestlers

Tom and Nick as Aleph Null Lucha libre wrestlers

The image is free down load under a Creative Commons attribution non-commercial licence.

CS5 AI and PNG. You can also download the mask by itself under the same CC licence. CS5 AI and PNG.

Pepe’s jewellery fun
Jul 31st, 2010 by neil

Pepe Newton’s new jewellery website is now live. Pepe is fabulous beaded jewellery maker with a vast depth of experience and talent. She also has an etsy store where you can purchase her work.

Pepe wanted a clean and simple website so the focus was on her work.

pepejewels.com website

Pepe Jewels

Vivienne Dadour’s work is up for show
Jun 3rd, 2010 by neil

Vivienne Dadour is a Sydney based artist who’s work deals with political and social issues in an Australian context.

Vivienne’s work has been displayed in galleries both in Australia and Internationally. Her work has been reviewed in many of the top publications.

Vivienne’s website showcases her new body of work Instincts, Traditions, Usages along with some of her past work from the previous 20 years of art practice.

The website also contains some of the essays and reviews that have been written about her work.

Vivienne Dadour's website

Vivienne Dadour's website

0 1 8 10 19 90 …
Apr 20th, 2010 by neil

On the recent Math Factor podcast episode GR, Cheim provided several puzzles from the book Riddles of the Sphinx by David J. Bodycombe. One the puzzles was to find the hidden logic in the sequence 0 1 8 10 19 and 90 and question why it couldn’t be continued.

But it can with the addition of 1024.

If you want the answer to the sequence then read below. If not look away.

So to answer the puzzle you need to spell out the numbers,

zero one eight ten nineteen ninety and yotta.

In the above sequence the last letter of the previous number is the starting letter for the following number.

Pretty simple answer, but a very clever puzzle.

Another possible extension is …

To go one number further with 10-18, atto. The sequence thus becomes:

0 1 8 10 19 90 1024 10-18

The addition of atto doesn’t destroy the logic but does make the sequence swing from a purely ascending series to one that descends at the end.

Also because atto ends with o you can make the sequence recur with the addition of one to become

0 1 8 10 19 90 1024 10-18 1 8 10 19 90 1024 10-18

You can also extend the initial sequence past 90 if you use 10-24 which is yocto, and it is also recursive with

one … yocto … one … yocto …

All of the additional numbers are on wikipedia at http://en.wikipedia.org/wiki/Yotta

A function for creating the Fibonacci sequence with jQuery
Apr 20th, 2010 by neil

Here is a little function that I wrote with javascript and jQuery to iterate through all of the Fibonacci numbers that my computer was capable of generating. The computer has a maximum of 1476 interations before you just get infinity. The Fibonacci number at 1476 iterations is 1.3069892237633987e+308.

At the 1477th iteration the function is trying to add 1.3069892237633987e+308 + 8.077637632156222e+307, which is a little bit too much I guess and so all you get is ‘infinity’ as the result.

I had looked at a few other javascript functions for Fibonacci sequences before creating this one but they seemed to take forever to generate say 30-40  numbers and would just cause the browser to hang if you tried to go much higher.

So … to the code

The first part sets up the variable to be used and the array.

The function takes the current value of i and adds it to the previous one using the variable j. This new number is then appended to the array and written to screen at #fibbit which is the paragraph at the bottom.

The form lets you choose how many numbers you want to iterate through.

<script  src=”http://code.jquery.com/jquery-latest.js” language=”javascript”></script>
<script language=”javascript”>

var f = 1;
var fibrange = new Array();

fibrange[0] = 1;
fibrange[1] = fibrange[0];

function fib(x) {

$(‘#fibbit’).text(” “);
$(‘#fibbit’).append(fibrange[0]+’, ‘+fibrange[1]+’, ‘);

for (i=2; i<x; i++){
j = i-1;
k = i-2;

fibrange[i] = fibrange[j] + fibrange[k];

$(‘#fibbit’).append(fibrange[i]+’, ‘);

}

}

</script>

<p>Enter a number to generate a Fibonacci sequence and hit go.</p>

<form>

<input name=”textBox” id=”textBox” type=”text” />

<input name=”send” type=”button” id=”send” value=”go” onclick=”fib(document.getElementById(‘textBox’).value)” />

</form>

<p id=”fibbit”></p>

And that’s about it. You can see a demo of the code here (opens in a new window) .

Feel free to use the code however you like.

Mountains can be big – colour in sheet
Mar 31st, 2010 by neil

Olivia and Oscar discover how when you see something from a distance it looks small but when you get closer it turns out to be really big. (Download Mountains are big PDF)

Mountains can be big - colour in sheet

Mountains can be big - colour in sheet

We are small and the Earth is big – colour in sheet
Mar 30th, 2010 by neil

Another free colour in sheet to download for How BIG is BIG? This one shows Olivia, Oscar and Orin standing on the Earth’s surface looking very small when compared to the size of a planet. (Download We are small and the Earth is big PDF)

We are small and the Earth is big - colour in sheet

We are small and the Earth is big - colour in sheet

The Earth looks small from outer space colour in sheet
Mar 29th, 2010 by neil

The Earth is small colour in sheet is now available as a free download. It features Oscar, Olivia and Orin floating in outer space lookin at a small Earth, Moon and Sun. (Download The Earth is small PDF)

The Earth is small colour in sheet

The Earth is small colour in sheet

How big are trees? colour in sheet
Mar 26th, 2010 by neil

The How big are trees colour in sheet is now available. The image is a free download from How BIG is BIG?

How big are trees?

How big are trees? colour in sheet

Free Solor System image
Mar 11th, 2010 by neil

I created this image of the solar system a while ago for fun and thought that I would make it available as a free down load under a Creative Commons attribution non-commercial licence.

The image shows all the major planets (Mecury, Venus, Earth, Mars, Jupiter, Saturn, Uranus and Neptune), dwarf planets (Ceres, Pluto, Haumea, Makemake and Eris) and the major moons (Luna, Io, Europa, Ganymede, Callisto, Mimas, Dione, Iapetus, Titan, Rhea, Enceladus, Tethys, Miranda, Oberon, Titania, Umbriel, Ariel, Naiad, Nereid, Proteus, Galatea, Larissa, Despina, Triton, Thalassa) with labels.

The file is available as a layered Adobe Illustrator file, a full size PDF and an A4 sized PDF.

Solar System free image for download

Solar System free image for download

»  Substance: WordPress   »  Style: Ahren Ahimsa   »  Mod: labK