Before reading the answer can I interest you in a clue?
There is a more eloquent way of working this
but first lets look at a more brute force technique i used an Excel spread sheet:-

I'll just briefly explain to you the
function used:
=IF(($A65/CX$1)=INT($A65/CX$1),NOT(CW65),CW65)
The 'if' command checks to see if the bulb
number divided the person number is an integer that is to say it does the
calculation twice (bulb number / person number) and rounds off one of the
calculations to the nearest integer. It then compares the unrounded
number to the rounded one. If these are the same then the person is entitled
to switch that light bulb. Eg: Person 5 is entitled to switch bulb 50 but not
51, do the sum if you like. (This is not the most optimised command, but it is the easiest to follow.)
I have included the Spread sheet, you will
need Microsoft Excel, similar (such as LibreOffice) or the Excel Viewer to open the file:
All Office
lightbulb.zip - 46.9KB | Office 2007 onwards
lightbulb.xlsx - 75KB
As always we take what we learned from the brute force method and apply it to the the direct solution. What is special about the light bulbs that remained on?
A More eloquent approach.
First think who will operate each bulb,
obviously person #2 will do all the even numbers, and say person #10 will
operate all the bulbs that end in a zero. So who would operate for example
bulb 48:
Persons numbered: 1 & 48, 2 & 24, 3 & 16, 4 & 12, 6 & 8
........
That is all the factors (numbers by which
48 is divisible) will be in pairs. This means that for every person who
switches a bulb on there will be someone to switch it off. This willl result in
the bulb being back at it's original state.
So why aren't all the bulbs off?
Think of bulb 36:-
The factors are: 1 & 36, 2 & 13, 6 & 6
Well in this case whilst all the factors
are in pairs the number 6 is paired with it's self. Clearly the sixth person will
only flick the bulb once and so the pairs don't cancel. This is true of all
the square numbers.
There are 10 square numbers between 1 and
100 (1, 4, 9, 16, 25, 36, 49, 64, 81 & 100) hence 10 bulbs remain on.
BACK