• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 06:55
CET 11:55
KST 19:55
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
ByuL: The Forgotten Master of ZvT29Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (March 2-8): ByuN overcomes PvT block0GSL CK - New online series12BSL Season 224Vitality ends partnership with ONSYDE20Team Liquid Map Contest - Preparation Notice6
StarCraft 2
General
GSL CK - New online series Hoppsy Robot Bunny Weekly Cups (March 2-8): ByuN overcomes PvT block Weekly Cups (Feb 23-Mar 1): herO doubles, 2v2 bonanza Vitality ends partnership with ONSYDE
Tourneys
RSL Season 4 announced for March-April Sparkling Tuna Cup - Weekly Open Tournament PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) $5,000 WardiTV Winter Championship 2026 Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 516 Specter of Death Mutation # 515 Together Forever Mutation # 514 Ulnar New Year
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ BSL 22 Map Contest — Submissions OPEN to March 10 BSL Season 22 battle.net problems ASL21 General Discussion
Tourneys
ASL Season 21 Qualifiers March 7-8 [Megathread] Daily Proleagues BWCL Season 64 Announcement [BSL22] Open Qualifier #1 - Sunday 21:00 CET
Strategy
Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Simple Questions, Simple Answers Zealot bombing is no longer popular?
Other Games
General Games
Nintendo Switch Thread PC Games Sales Thread Path of Exile No Man's Sky (PS4 and PC) Stormgate/Frost Giant Megathread
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Mexico's Drug War Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Cricket [SPORT] Formula 1 Discussion TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Gaming-Related Deaths
TrAiDoS
ONE GREAT AMERICAN MARINE…
XenOsky
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1682 users

Anyone took putnam math contest today?

Blogs > evanthebouncy!
Post a Reply
Normal
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
Last Edited: 2009-12-06 19:12:43
December 06 2009 12:49 GMT
#1
I took a swing at it and I did 2 problems lol. One for the morning and one for the afternoon. It's really cool and hard.
That was some epic 6 hour battle hahaha!!

Anyways the last problem is pretty hard, I couldn't do it so if anyone want to have a go at it! please!

We have a sequence:
a0, a1, ..., a2009

a0 = 0, always
ai for i>=1 has to be either one of these:
ai = 2^k + aj for any non-negative integer k, and for any aj such that j<i
or
ai = aj mod ak, for j, k < i (doesn't matter if j<k or k<j)
a2009 = n, always. n is ANY positive integer.

so to rephrase the problem, in case it's not clear or it might help you understand it better:
if we start with 0 on a0, how can we make any positive integer n in 2009 steps, filling a0, then a1, a2, ... finally ending with n at a2009 where each time we try to fill some ai we must obey one out of these 2 rules:
1) ai is a sum of 2^k and aj for some aj occuring before ai
or
2) ai is a mod of ak and aj, where ak and aj occurs before ai (does not matter if ak occurs before or after aj)

How to do it?! I get this feeling we'll eventually run out of usable bits as 2^k can only add some 1 bit of information per iteration, I just dunno haha. This procedure must be made in constant and not linear time since 2009 is just some fancy cap. I feel that you should hit your target goal n say, at the 10th step then just repeat n over and over as n mod some large number.

Anyways take a swing at it!!

edit:
by mod I meant the element in the modulo class, i.e. b mod c is an element of {0, 1, ..., c-1}

Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
motbob
Profile Blog Joined July 2008
United States12546 Posts
Last Edited: 2009-12-06 12:58:31
December 06 2009 12:56 GMT
#2
I was going to. I was writing OSL articles and forgot to go Starcraft has become my nerd activity of choice.

BTW I took Putnam freshman year and it's one of the most brutally difficult math tests I've ever seen... I'm not really surprised that the median score is zero. That problem you posted looks particularly brutal.
ModeratorGood content always wins.
Marradron
Profile Blog Joined January 2009
Netherlands1586 Posts
Last Edited: 2009-12-06 13:43:05
December 06 2009 13:41 GMT
#3
cant you just say
a0 = 0
a1 = 2^0 + a0 = 1
a2 = 2^1 + a0 = 2
a3 = 2^1 + a1= 3
a4 = 2^2 + a0 = 4
a5 = 2^2 + a1 = 5
Like that you can make any number you want once you reach your number you can just ceep repeating the samething. in example if n were 5 you would ceep saying
an = 2^2 + a1
Marradron
Profile Blog Joined January 2009
Netherlands1586 Posts
Last Edited: 2009-12-06 13:42:40
December 06 2009 13:42 GMT
#4
sorry, doublepost
ProbeSaturation
Profile Blog Joined March 2009
Canada292 Posts
December 06 2009 13:50 GMT
#5
^ smart people at work
Ludrik
Profile Blog Joined June 2008
Australia523 Posts
December 06 2009 13:56 GMT
#6
I've been looking around for interesting maths based problem solving sites and figured you guys might have some suggestions. Currently I'm slowly working through projecteuler.net
Only a fool would die laughing. I was a fool.
Nytefish
Profile Blog Joined December 2007
United Kingdom4282 Posts
December 06 2009 13:57 GMT
#7
On December 06 2009 22:41 Marradron wrote:
cant you just say
a0 = 0
a1 = 2^0 + a0 = 1
a2 = 2^1 + a0 = 2
a3 = 2^1 + a1= 3
a4 = 2^2 + a0 = 4
a5 = 2^2 + a1 = 5
Like that you can make any number you want once you reach your number you can just ceep repeating the samething. in example if n were 5 you would ceep saying
an = 2^2 + a1


Surely that process only works for n<=2009
No I'm never serious.
searcher
Profile Blog Joined May 2009
277 Posts
Last Edited: 2009-12-06 15:53:44
December 06 2009 14:14 GMT
#8
Umm, either I haven't read your question correctly or you haven't got the right one, but how about:
a0 = 0
a1 = 2^0+a0 = 1
a2 = 2^1 + a0 = 2
a3 = a4 = ... = a2008 = 2^1+a0 = 2 (you could make these any number you want really)
If n is odd, then n = 1 mod 2 = a1 mod a2, so a2009 can be n.
If n is even, then n = 0 mod 2 = a0 mod a2, so a2009 can be n.

Edit: I think there was a misunderstanding: when the OP says ai = aj mod ak, he doesn't mean ai is congruent to aj mod ak, but that ai = aj % ak, or in other words that ai is the remainder when aj is divided by ak.
starfries
Profile Blog Joined July 2009
Canada3508 Posts
December 06 2009 14:48 GMT
#9
I did 4 problems but I didn't really try this one.. it sounded way too hard lol. What exactly are you trying to figure out? which values of n are possible? or whether given an n if it's possible to do it.
DJ – do you like ramen, Savior? Savior – not really. Bisu – I eat it often. Flash – I’m a maniac! | Foxer Fighting!
Hamster1800
Profile Blog Joined August 2008
United States175 Posts
December 06 2009 15:29 GMT
#10
Okay...I think I've got it.

First let's notice that 2 is a generator modulo 3^r for all r. That is, the set of residues of 2^k mod 3^r over all k are all of the residues relatively prime to 3^r. This can be shown because 2 is a generator mod 9, and then the standard primitive root lifting argument shows it for all r > 2.

Therefore, we know that if 3^r >> n, we can write n as the remainder of 2^k * 3^l mod 3^r for some k and l (let 2^k = n mod 3^r and l be the number of 3s dividing n). All we then need to show are that we can construct 2^k * 3^l and 3^r in a constant number of steps.

We have a_0 = 0. Let a_1 = 2^m for m >> r, k, and l, a_2 = 2^m + 1, and a_3 = 2^m + 3. Now we let a_4 = 2^(m*l + k) and a_5 = 2^(m*r). a_6 = a_4 % a_3 = 2^k * 3^l, and a_7 = a_5 % a_3 = 3^r. Finally a_8 = a_6 % a_7 = (2^k * 3^l) % (3^r) = n.

It's easy to then get a_2009 to be equal to n.
D is for Diamond, E is for Everything Else
Commodore
Profile Joined January 2008
United States97 Posts
December 06 2009 15:40 GMT
#11
On December 06 2009 22:56 Ludrik wrote:
I've been looking around for interesting maths based problem solving sites and figured you guys might have some suggestions. Currently I'm slowly working through projecteuler.net


Old Putnam problems are available http://www.unl.edu/amc/a-activities/a7-problems/putnamindex.shtml

I went through some of these while preparing for the Putnam exam. Some of these can be done without anything more than freshman calculus, but many require undergraduate real analysis or abstract algebra.
searcher
Profile Blog Joined May 2009
277 Posts
Last Edited: 2009-12-06 17:13:50
December 06 2009 16:14 GMT
#12
Edit: misunderstanding
Hamster1800
Profile Blog Joined August 2008
United States175 Posts
December 06 2009 16:44 GMT
#13
I did not take the test, I am just using what I think the OP means.
D is for Diamond, E is for Everything Else
searcher
Profile Blog Joined May 2009
277 Posts
December 06 2009 17:02 GMT
#14
On December 07 2009 01:44 Hamster1800 wrote:
I did not take the test, I am just using what I think the OP means.

Sorry mixed you up with someone else in the thread. Could you elucidate to me how you got a7? 2^(m*r) % 2^m +3 doesn't seem to equal 3^r for many values of m and r (I made sure m >> r too), though it's true for some of them.
Klockan3
Profile Blog Joined July 2007
Sweden2866 Posts
Last Edited: 2009-12-06 17:12:12
December 06 2009 17:10 GMT
#15
On December 07 2009 01:14 searcher wrote:
a series a0...a2008 such that a2009 can be any n

Such a series is impossible to construct, so it is obvious that this wasn't the question. You can't construct larger numbers with the mod operation and you certainly can't create every n in N using just 2^k+c with a finite choice of c and for any k.
Hamster1800
Profile Blog Joined August 2008
United States175 Posts
Last Edited: 2009-12-06 17:14:03
December 06 2009 17:11 GMT
#16
On December 07 2009 02:02 searcher wrote:
Show nested quote +
On December 07 2009 01:44 Hamster1800 wrote:
I did not take the test, I am just using what I think the OP means.

Sorry mixed you up with someone else in the thread. Could you elucidate to me how you got a7? 2^(m*r) % 2^m +3 doesn't seem to equal 3^r for many values of m and r (I made sure m >> r too), though it's true for some of them.


Oh you are right, it is (-3)^r (+2^m if need be)....Just take r to be even. Unfortunately, there's still a problem in a_6. I'll look into it later when I have more time, but someone else can probably fix it before then.
D is for Diamond, E is for Everything Else
searcher
Profile Blog Joined May 2009
277 Posts
December 06 2009 17:13 GMT
#17
On December 07 2009 02:10 Klockan3 wrote:
Show nested quote +
On December 07 2009 01:14 searcher wrote:
a series a0...a2008 such that a2009 can be any n

Such a series is impossible to construct, so it is obvious that this wasn't the question.

Not if you used my original interpretation of what the OP meant by "ai = aj mod ak", which I took to be "ai is congruent to aj modulo ak". Since I have realized that my interpretation is most likely wrong (otherwise my trivial solution above would be correct) I should probably remove that comment.
Klockan3
Profile Blog Joined July 2007
Sweden2866 Posts
December 06 2009 17:19 GMT
#18
On December 07 2009 02:11 Hamster1800 wrote:
Show nested quote +
On December 07 2009 02:02 searcher wrote:
On December 07 2009 01:44 Hamster1800 wrote:
I did not take the test, I am just using what I think the OP means.

Sorry mixed you up with someone else in the thread. Could you elucidate to me how you got a7? 2^(m*r) % 2^m +3 doesn't seem to equal 3^r for many values of m and r (I made sure m >> r too), though it's true for some of them.


Oh you are right, it is (-3)^r (+2^m if need be)....Just take r to be even. Unfortunately, there's still a problem in a_6. I'll look into it later when I have more time, but someone else can probably fix it before then.

Do you use the % for a modulus operation? Like 23%9=5?

Then at least I would get 2^(m*r)%2^m+3 =(2^m)+3*(1-2^r) if m>>r.
Hamster1800
Profile Blog Joined August 2008
United States175 Posts
December 06 2009 17:43 GMT
#19
On December 07 2009 02:19 Klockan3 wrote:
Show nested quote +
On December 07 2009 02:11 Hamster1800 wrote:
On December 07 2009 02:02 searcher wrote:
On December 07 2009 01:44 Hamster1800 wrote:
I did not take the test, I am just using what I think the OP means.

Sorry mixed you up with someone else in the thread. Could you elucidate to me how you got a7? 2^(m*r) % 2^m +3 doesn't seem to equal 3^r for many values of m and r (I made sure m >> r too), though it's true for some of them.


Oh you are right, it is (-3)^r (+2^m if need be)....Just take r to be even. Unfortunately, there's still a problem in a_6. I'll look into it later when I have more time, but someone else can probably fix it before then.

Do you use the % for a modulus operation? Like 23%9=5?

Then at least I would get 2^(m*r)%2^m+3 =(2^m)+3*(1-2^r) if m>>r.


2^(m*r) = (2^m)^r = (-3)^r mod (2^m+3). What you have is 2^(m+r).

To fix the other part, we were looking at 2^(m*l+k). If l is even, we're fine since (-3)^l = 3^l. If l is odd, we'll break it into two steps: 2^(m*(l-1) + k) and then 2^(m*(l-1) + k + 1) + 2^(m*(l-1) + k) = 3*2^(m*(l-1)+k), which will be congruent to 3*((-3)^(l-1)*2^k) = 3^l * 2^k.
D is for Diamond, E is for Everything Else
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
December 06 2009 19:08 GMT
#20
On December 06 2009 23:14 searcher wrote:
Umm, either I haven't read your question correctly or you haven't got the right one, but how about:
a0 = 0
a1 = 2^0+a0 = 1
a2 = 2^1 + a0 = 2
a3 = a4 = ... = a2008 = 2^1+a0 = 2 (you could make these any number you want really)
If n is odd, then n = 1 mod 2 = a1 mod a2, so a2009 can be n.
If n is even, then n = 0 mod 2 = a0 mod a2, so a2009 can be n.

Edit: I think there was a misunderstanding: when the OP says ai = aj mod ak, he doesn't mean ai is congruent to aj mod ak, but that ai = aj % ak, or in other words that ai is the remainder when aj is divided by ak.


the latter is what I meant.
Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
stoned_rabbit
Profile Blog Joined November 2009
United States324 Posts
December 06 2009 19:12 GMT
#21
I'm pretty there's an upper bounds on what this sequence can generate. It would be extremely large, but it's there.
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
December 06 2009 19:20 GMT
#22
On December 07 2009 00:29 Hamster1800 wrote:
Okay...I think I've got it.

First let's notice that 2 is a generator modulo 3^r for all r. That is, the set of residues of 2^k mod 3^r over all k are all of the residues relatively prime to 3^r. This can be shown because 2 is a generator mod 9, and then the standard primitive root lifting argument shows it for all r > 2.

Therefore, we know that if 3^r >> n, we can write n as the remainder of 2^k * 3^l mod 3^r for some k and l (let 2^k = n mod 3^r and l be the number of 3s dividing n). All we then need to show are that we can construct 2^k * 3^l and 3^r in a constant number of steps.

We have a_0 = 0. Let a_1 = 2^m for m >> r, k, and l, a_2 = 2^m + 1, and a_3 = 2^m + 3. Now we let a_4 = 2^(m*l + k) and a_5 = 2^(m*r). a_6 = a_4 % a_3 = 2^k * 3^l, and a_7 = a_5 % a_3 = 3^r. Finally a_8 = a_6 % a_7 = (2^k * 3^l) % (3^r) = n.

It's easy to then get a_2009 to be equal to n.


can we go over "we can write n as the remainder of 2^k * 3^l mod 3^r for some k and l (let 2^k = n mod 3^r and l be the number of 3s dividing n). " this part again? I'm not understanding what's going on >_<

I understand that n is definitely in the mod class for 3^r and I understand that 2^k * 3^l can be possibly the same mod class as n but I don't understand how you do it to get 2^k * 3^l to be exactly n still
Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
Ganfei
Profile Blog Joined August 2008
Taiwan1439 Posts
December 06 2009 19:23 GMT
#23
this thread hurts my head
You are crushing me like a cheese sandwich
ForTheSwarm
Profile Blog Joined April 2009
United States556 Posts
December 06 2009 19:25 GMT
#24
On December 07 2009 00:40 Commodore wrote:
Show nested quote +
On December 06 2009 22:56 Ludrik wrote:
I've been looking around for interesting maths based problem solving sites and figured you guys might have some suggestions. Currently I'm slowly working through projecteuler.net


Old Putnam problems are available http://www.unl.edu/amc/a-activities/a7-problems/putnamindex.shtml

I went through some of these while preparing for the Putnam exam. Some of these can be done without anything more than freshman calculus, but many require undergraduate real analysis or abstract algebra.


Grad School Math major ftw! Commodore, I'm curious, how did the Putnam go for you?
Whenever I see a dropship, my asshole tingles, because it knows whats coming... - TheAntZ
datscilly
Profile Blog Joined November 2007
United States529 Posts
December 06 2009 19:32 GMT
#25
On December 07 2009 04:20 evanthebouncy! wrote:
Show nested quote +
On December 07 2009 00:29 Hamster1800 wrote:
Okay...I think I've got it.

First let's notice that 2 is a generator modulo 3^r for all r. That is, the set of residues of 2^k mod 3^r over all k are all of the residues relatively prime to 3^r. This can be shown because 2 is a generator mod 9, and then the standard primitive root lifting argument shows it for all r > 2.

Therefore, we know that if 3^r >> n, we can write n as the remainder of 2^k * 3^l mod 3^r for some k and l (let 2^k = n mod 3^r and l be the number of 3s dividing n). All we then need to show are that we can construct 2^k * 3^l and 3^r in a constant number of steps.

We have a_0 = 0. Let a_1 = 2^m for m >> r, k, and l, a_2 = 2^m + 1, and a_3 = 2^m + 3. Now we let a_4 = 2^(m*l + k) and a_5 = 2^(m*r). a_6 = a_4 % a_3 = 2^k * 3^l, and a_7 = a_5 % a_3 = 3^r. Finally a_8 = a_6 % a_7 = (2^k * 3^l) % (3^r) = n.

It's easy to then get a_2009 to be equal to n.


can we go over "we can write n as the remainder of 2^k * 3^l mod 3^r for some k and l (let 2^k = n mod 3^r and l be the number of 3s dividing n). " this part again? I'm not understanding what's going on >_<

I understand that n is definitely in the mod class for 3^r and I understand that 2^k * 3^l can be possibly the same mod class as n but I don't understand how you do it to get 2^k * 3^l to be exactly n still


It should be
(let 2^k = n mod 3^l and l be the number of 3s dividing n)

and is easier to understand if switched
(let l be the number of 3s dividing n and 2^k = n mod 3^l)
Hamster1800
Profile Blog Joined August 2008
United States175 Posts
December 06 2009 19:34 GMT
#26
On December 07 2009 04:32 datscilly wrote:
Show nested quote +
On December 07 2009 04:20 evanthebouncy! wrote:
On December 07 2009 00:29 Hamster1800 wrote:
Okay...I think I've got it.

First let's notice that 2 is a generator modulo 3^r for all r. That is, the set of residues of 2^k mod 3^r over all k are all of the residues relatively prime to 3^r. This can be shown because 2 is a generator mod 9, and then the standard primitive root lifting argument shows it for all r > 2.

Therefore, we know that if 3^r >> n, we can write n as the remainder of 2^k * 3^l mod 3^r for some k and l (let 2^k = n mod 3^r and l be the number of 3s dividing n). All we then need to show are that we can construct 2^k * 3^l and 3^r in a constant number of steps.

We have a_0 = 0. Let a_1 = 2^m for m >> r, k, and l, a_2 = 2^m + 1, and a_3 = 2^m + 3. Now we let a_4 = 2^(m*l + k) and a_5 = 2^(m*r). a_6 = a_4 % a_3 = 2^k * 3^l, and a_7 = a_5 % a_3 = 3^r. Finally a_8 = a_6 % a_7 = (2^k * 3^l) % (3^r) = n.

It's easy to then get a_2009 to be equal to n.


can we go over "we can write n as the remainder of 2^k * 3^l mod 3^r for some k and l (let 2^k = n mod 3^r and l be the number of 3s dividing n). " this part again? I'm not understanding what's going on >_<

I understand that n is definitely in the mod class for 3^r and I understand that 2^k * 3^l can be possibly the same mod class as n but I don't understand how you do it to get 2^k * 3^l to be exactly n still


It should be
Show nested quote +
(let 2^k = n mod 3^l and l be the number of 3s dividing n)

and is easier to understand if switched
Show nested quote +
(let l be the number of 3s dividing n and 2^k = n mod 3^l)


It still needs to be fixed slightly. My apologies. You have to write n = 3^l * b where b is not a multiple of 3. Then we know that (because 2 is a generator mod 3^r) that there is some k such that 2^k = b. These are the k and l you want.

I don't have time to prove that 2 is a generator mod 3^r right now. If I get time I'll put that proof here, but it's pretty standard when proving the primitive root theorem.
D is for Diamond, E is for Everything Else
Commodore
Profile Joined January 2008
United States97 Posts
Last Edited: 2009-12-06 20:37:58
December 06 2009 20:32 GMT
#27
On December 07 2009 04:25 ForTheSwarm wrote:
Show nested quote +
On December 07 2009 00:40 Commodore wrote:
On December 06 2009 22:56 Ludrik wrote:
I've been looking around for interesting maths based problem solving sites and figured you guys might have some suggestions. Currently I'm slowly working through projecteuler.net


Old Putnam problems are available http://www.unl.edu/amc/a-activities/a7-problems/putnamindex.shtml

I went through some of these while preparing for the Putnam exam. Some of these can be done without anything more than freshman calculus, but many require undergraduate real analysis or abstract algebra.


Grad School Math major ftw! Commodore, I'm curious, how did the Putnam go for you?


I scored 11 out of 120 points, which put me in the top 26%. This is one tough exam!

You going to take it next year?
meaculpa
Profile Blog Joined November 2009
United States119 Posts
December 06 2009 21:24 GMT
#28
Might be a good time for you to put your genius mind to use and solve the problem for us, Klockan3? Now that you have the proper wording, the solution should trivially follow from the definitions.
Blessed is the mind too small for doubt.
qrs
Profile Blog Joined December 2007
United States3637 Posts
Last Edited: 2009-12-07 06:55:37
December 06 2009 21:57 GMT
#29
I took it: pretty fun, even though I only got two of them. By chance, this was one of the ones I (think I) got. Hamster's answer looks more or less like it, but all that dense terminology and symbolism makes my eyes hurt to look at, so I'll just post an example of how it works, which is probably easier to read, albeit less formal.

Just for instance, let's make "n" 500. Lets call j the smallest integer such that 2^j is more than n, so in this case j = 9.

a0: 0
a1: 1 (0 + 2^0)
a2: 2^j + 1 (a1 + 2^j) = 513
a3: 2^(j+1) = 1024
a4 a3 mod a2 = 2^j - 1 = 511
a5: 2^(j+n-1) = 2^508 = a lot
...
a2009 a5 mod a4 = 1 * (j + n - 1 - j - 1) = 500.*

Of course for my example of 500 you don't need to do it that way, but the method should work for any number at all.

* edit: intuitive demonstration, since I see there was another page of posts discussing this:

512 /512 = 1. 512/511 = 1 remainder 1.
1024/512 = 2. 1024/511 = 2 remainder 2.
and so on: with each go-round, the remainder "lags" by one more.

Obviously that's not a formal proof, but it should be enough to let anyone see why it's true. Even on the test itself I didn't really do a good job of proving this formally, so I'll probably lose points there.

edit 2:
On December 07 2009 04:12 stoned_rabbit wrote:
I'm pretty there's an upper bounds on what this sequence can generate. It would be extremely large, but it's there.

The reason there's no upper bound on what it can generate is that there is no upper bound on what "k" (2^k) can be.
'As per the American Heart Association, the beat of the Bee Gees song "Stayin' Alive" provides an ideal rhythm in terms of beats per minute to use for hands-only CPR. One can also hum Queen's "Another One Bites The Dust".' —Wikipedia
Normal
Please log in or register to reply.
Live Events Refresh
Next event in 1h 5m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 181
ProTech130
Creator 27
StarCraft: Brood War
Britney 53295
Calm 9963
firebathero 699
Hyuk 553
Larva 312
Stork 178
Hyun 173
Light 165
Shuttle 160
Soulkey 127
[ Show more ]
Leta 119
Aegong 89
ZerO 87
ToSsGirL 76
Sharp 70
Killer 56
hero 50
JulyZerg 34
sorry 33
Snow 32
JYJ 30
Shine 30
Hm[arnc] 29
yabsab 25
Backho 25
Free 24
GoRush 18
910 14
Noble 9
SilentControl 7
Terrorterran 5
Dota 2
XaKoH 484
NeuroSwarm75
League of Legends
JimRising 371
Counter-Strike
olofmeister1769
byalli1705
shoxiejesuss967
zeus260
edward58
Other Games
Liquid`RaSZi786
ceh9691
crisheroes217
Happy174
Fuzer 131
B2W.Neo8
ZerO(Twitch)8
Organizations
Dota 2
PGL Dota 2 - Main Stream9449
PGL Dota 2 - Secondary Stream4819
Other Games
gamesdonequick877
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Berry_CruncH175
• Light_VIP 22
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 5
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos1751
Upcoming Events
Wardi Open
1h 5m
PiGosaur Monday
13h 5m
GSL
23h 5m
WardiTV Team League
1d 1h
The PondCast
1d 23h
WardiTV Team League
2 days
Replay Cast
2 days
Replay Cast
3 days
CranKy Ducklings
3 days
WardiTV Team League
4 days
[ Show More ]
uThermal 2v2 Circuit
4 days
BSL
4 days
Sparkling Tuna Cup
4 days
WardiTV Team League
5 days
BSL
5 days
Replay Cast
5 days
Replay Cast
5 days
Wardi Open
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

ASL Season 21: Qualifier #2
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
Spring Cup 2026
BSL Season 22
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

ASL Season 21
Acropolis #4 - TS6
Acropolis #4
IPSL Spring 2026
CSLAN 4
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
NationLESS Cup
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.