• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 10:38
CET 16:38
KST 00:38
  • 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 ZvT28Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (Feb 16-22): MaxPax doubles0Weekly Cups (Feb 9-15): herO doubles up2ACS replaced by "ASL Season Open" - Starts 21/0243LiuLi Cup: 2025 Grand Finals (Feb 10-16)46Weekly Cups (Feb 2-8): Classic, Solar, MaxPax win2
StarCraft 2
General
ByuL: The Forgotten Master of ZvT How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game? Oliveira Would Have Returned If EWC Continued Behind the Blue - Team Liquid History Book Weekly Cups (Feb 16-22): MaxPax doubles
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) StarCraft Evolution League (SC Evo Biweekly) Sea Duckling Open (Global, Bronze-Diamond) How do the "codes" work in GSL?
Strategy
Custom Maps
Map Editor closed ? [A] Starcraft Sound Mod
External Content
Mutation # 514 Ulnar New Year The PondCast: SC2 News & Results Mutation # 513 Attrition Warfare Mutation # 512 Overclocked
Brood War
General
CasterMuse Youtube BGH Auto Balance -> http://bghmmr.eu/ ACS replaced by "ASL Season Open" - Starts 21/02 TvZ is the most complete match up A cwal.gg Extension - Easily keep track of anyone
Tourneys
Escore Tournament StarCraft Season 1 [Megathread] Daily Proleagues [LIVE] [S:21] ASL Season Open Day 1 Small VOD Thread 2.0
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers Zealot bombing is no longer popular?
Other Games
General Games
Path of Exile Nintendo Switch Thread Beyond All Reason Battle Aces/David Kim RTS Megathread New broswer game : STG-World
Dota 2
Official 'what is Dota anymore' discussion
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
US Politics Mega-thread Mexico's Drug War Canadian Politics Mega-thread Russo-Ukrainian War Thread Ask and answer stupid questions here!
Fan Clubs
The IdrA Fan Club The herO Fan Club!
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
TL Community
The Automated Ban List
Blogs
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Inside the Communication of …
TrAiDoS
My 2025 Magic: The Gathering…
DARKING
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1031 users

a fun math puzzle

Blogs > evanthebouncy!
Post a Reply
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
June 25 2015 05:02 GMT
#1
a curious puzzle for those who want to have some fun.
https://gist.github.com/evanthebouncy/bde3e510e562da5db6a2
take a look at this code and try to run it, what it does is it creates some random functions f1,f2,...,f100, and then form a chain by composing them together, and the result is a (random) constant function! how can it be?
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!
Xxazn4lyfe51xX
Profile Joined October 2010
United States976 Posts
June 25 2015 07:42 GMT
#2
As far as I can tell, it's not really a constant function. As n grows larger, the function approaches a random, constant value. For the purposes of the interpreter they give us, the point at which the function gives a constant number to the number of digits the output reads is about around n = 16.

I'm not good enough, or at least not patient enough with math to figure out why exactly it is that putting numbers through increasing numbers of random functions tends towards constancy though.
fixed_point
Profile Joined June 2011
Germany4891 Posts
Last Edited: 2015-06-25 09:52:00
June 25 2015 09:27 GMT
#3
By order arguments, one can show that at each value of n, the result of the composition is more dependent on the random numbers you generated rather than the initial x.

This is because at the first iteration f_1 you've already mapped any x to a number between 0 and 1. Then look at the series expansion of 1/(1+e^(-x)) (respectively 1/(1+e^(x)) ) for n=2 onwards and you'll see that the terms depending on x become negligible since the powers of 0 < f_1(x) < 1 vanishes quickly unless f_1(x)=1 is already a constant function.

So yeah, the result is (almost) never a constant function, but damned close to one. Caveat: if your random number at any point is zero the function becomes constant.
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
June 25 2015 11:35 GMT
#4
On June 25 2015 18:27 fixed_point wrote:
By order arguments, one can show that at each value of n, the result of the composition is more dependent on the random numbers you generated rather than the initial x.

This is because at the first iteration f_1 you've already mapped any x to a number between 0 and 1. Then look at the series expansion of 1/(1+e^(-x)) (respectively 1/(1+e^(x)) ) for n=2 onwards and you'll see that the terms depending on x become negligible since the powers of 0 < f_1(x) < 1 vanishes quickly unless f_1(x)=1 is already a constant function.

So yeah, the result is (almost) never a constant function, but damned close to one. Caveat: if your random number at any point is zero the function becomes constant.


it's fitting that someone with a name like "fixed point" should answer this
lol
but yeah I know it's not a constant function, it's just faster to say it that way.

can u elaborate a bit on the derivative argument (serieis expansion)? derivatives and function composition has a strong relationship via the chain rule, so we can take the derivative of the huge chain and get a big multiplications (which approaches 0 in our problem), is that what you were trying to say?
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!
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
June 25 2015 11:37 GMT
#5
On June 25 2015 16:42 Xxazn4lyfe51xX wrote:
As far as I can tell, it's not really a constant function. As n grows larger, the function approaches a random, constant value. For the purposes of the interpreter they give us, the point at which the function gives a constant number to the number of digits the output reads is about around n = 16.

I'm not good enough, or at least not patient enough with math to figure out why exactly it is that putting numbers through increasing numbers of random functions tends towards constancy though.


the way I reasoned with it is consider a pair of numbers x, y
and push the numbers through the chain, i.e.
x, y
f1(x), f1(y)
f2(x), f2(y)
...

and try to prove that in each step the distance between x and y is closer together

once you're done with that, u will be able to show then for any distinct values (x, y) they will converge together after a sufficiently long chain, thus the chain is close to a constant function
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!
fixed_point
Profile Joined June 2011
Germany4891 Posts
Last Edited: 2015-06-25 13:18:03
June 25 2015 13:16 GMT
#6
On June 25 2015 20:35 evanthebouncy! wrote:
Show nested quote +
On June 25 2015 18:27 fixed_point wrote:
By order arguments, one can show that at each value of n, the result of the composition is more dependent on the random numbers you generated rather than the initial x.

This is because at the first iteration f_1 you've already mapped any x to a number between 0 and 1. Then look at the series expansion of 1/(1+e^(-x)) (respectively 1/(1+e^(x)) ) for n=2 onwards and you'll see that the terms depending on x become negligible since the powers of 0 < f_1(x) < 1 vanishes quickly unless f_1(x)=1 is already a constant function.

So yeah, the result is (almost) never a constant function, but damned close to one. Caveat: if your random number at any point is zero the function becomes constant.


it's fitting that someone with a name like "fixed point" should answer this
lol
but yeah I know it's not a constant function, it's just faster to say it that way.

can u elaborate a bit on the derivative argument (serieis expansion)? derivatives and function composition has a strong relationship via the chain rule, so we can take the derivative of the huge chain and get a big multiplications (which approaches 0 in our problem), is that what you were trying to say?

Derivatives are unnecessary. I can write more details with greater clarity in latex when I get home.
DucK-
Profile Blog Joined January 2009
Singapore11447 Posts
June 25 2015 15:01 GMT
#7
I thought this was pure math. Seems like I need some programming knowledge to understand :\
TanGeng
Profile Blog Joined January 2009
Sanya12364 Posts
June 25 2015 19:40 GMT
#8
I don't really know how fun that was. If you jam a number through 100 iterations of

shrink_fun(x) = 1 / (1 + e^-x)

You don't leave a lot of information about the original x at the very end.
Moderator我们是个踏实的赞助商模式俱乐部
fixed_point
Profile Joined June 2011
Germany4891 Posts
June 25 2015 21:26 GMT
#9
Heuristically this is why the function converges to a constant one.

PDF file on google drive
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
June 25 2015 23:34 GMT
#10
On June 26 2015 06:26 fixed_point wrote:
Heuristically this is why the function converges to a constant one.

PDF file on google drive


wow that's quite more involved than I expected.
but I'm sure it's second nature to you so good!!
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!
Kleinmuuhg
Profile Blog Joined September 2010
Vanuatu4091 Posts
June 26 2015 00:12 GMT
#11
On June 25 2015 20:37 evanthebouncy! wrote:
Show nested quote +
On June 25 2015 16:42 Xxazn4lyfe51xX wrote:
As far as I can tell, it's not really a constant function. As n grows larger, the function approaches a random, constant value. For the purposes of the interpreter they give us, the point at which the function gives a constant number to the number of digits the output reads is about around n = 16.

I'm not good enough, or at least not patient enough with math to figure out why exactly it is that putting numbers through increasing numbers of random functions tends towards constancy though.


the way I reasoned with it is consider a pair of numbers x, y
and push the numbers through the chain, i.e.
x, y
f1(x), f1(y)
f2(x), f2(y)
...

and try to prove that in each step the distance between x and y is closer together

once you're done with that, u will be able to show then for any distinct values (x, y) they will converge together after a sufficiently long chain, thus the chain is close to a constant function

sounds like a typical contraction to me
This is our town, scrub
fixed_point
Profile Joined June 2011
Germany4891 Posts
Last Edited: 2015-06-26 06:05:54
June 26 2015 06:00 GMT
#12
On June 26 2015 09:12 Kleinmuuhg wrote:
Show nested quote +
On June 25 2015 20:37 evanthebouncy! wrote:
On June 25 2015 16:42 Xxazn4lyfe51xX wrote:
As far as I can tell, it's not really a constant function. As n grows larger, the function approaches a random, constant value. For the purposes of the interpreter they give us, the point at which the function gives a constant number to the number of digits the output reads is about around n = 16.

I'm not good enough, or at least not patient enough with math to figure out why exactly it is that putting numbers through increasing numbers of random functions tends towards constancy though.


the way I reasoned with it is consider a pair of numbers x, y
and push the numbers through the chain, i.e.
x, y
f1(x), f1(y)
f2(x), f2(y)
...

and try to prove that in each step the distance between x and y is closer together

once you're done with that, u will be able to show then for any distinct values (x, y) they will converge together after a sufficiently long chain, thus the chain is close to a constant function

sounds like a typical contraction to me

If the domain is two fixed numbers, the functions are contractions. Generally you'll need a fixed constant 0 \leq \lambda < 1 for which the distance between any two f_1(x),f_2(y) is less than \lambda |x-y| for all x,y \in R. I'm not sure we have that here, but then again my brain doesn't work at this hour (need to take a look at the behaviour near x=0)
manicmessiah
Profile Joined June 2015
United States107 Posts
June 26 2015 07:33 GMT
#13
I have a feeling I should know what is going on, but I have no idea
fixed_point
Profile Joined June 2011
Germany4891 Posts
Last Edited: 2015-06-26 11:21:08
June 26 2015 10:59 GMT
#14
On June 26 2015 15:00 fixed_point wrote:
Show nested quote +
On June 26 2015 09:12 Kleinmuuhg wrote:
On June 25 2015 20:37 evanthebouncy! wrote:
On June 25 2015 16:42 Xxazn4lyfe51xX wrote:
As far as I can tell, it's not really a constant function. As n grows larger, the function approaches a random, constant value. For the purposes of the interpreter they give us, the point at which the function gives a constant number to the number of digits the output reads is about around n = 16.

I'm not good enough, or at least not patient enough with math to figure out why exactly it is that putting numbers through increasing numbers of random functions tends towards constancy though.


the way I reasoned with it is consider a pair of numbers x, y
and push the numbers through the chain, i.e.
x, y
f1(x), f1(y)
f2(x), f2(y)
...

and try to prove that in each step the distance between x and y is closer together

once you're done with that, u will be able to show then for any distinct values (x, y) they will converge together after a sufficiently long chain, thus the chain is close to a constant function

sounds like a typical contraction to me

If the domain is two fixed numbers, the functions are contractions. Generally you'll need a fixed constant 0 \leq \lambda < 1 for which the distance between any two f_1(x),f_2(y) is less than \lambda |x-y| for all x,y \in R. I'm not sure we have that here, but then again my brain doesn't work at this hour (need to take a look at the behaviour near x=0)

Nevermind, I'm an idiot. y=f_1(x) is between 0 and 1 and so f_100(f_99(...f(2(y)))) is a contraction. Therefore you can definitely use the contraction mapping/Banach fixed point theorem to prove that the composition/chain converges to a fixed point (i.e. constant number) for sufficiently large compositions. Pretty ironic, given my name...

However, I still think the series expansion is perhaps more intuitive for one unfamiliar with this theorem, since the original question asks for a finite sequence of compositions. (Of course from an abstract point of view, this is just a specific case of the fixed point theorem).
Dagobert
Profile Blog Joined July 2009
Netherlands1858 Posts
June 26 2015 12:11 GMT
#15
Having trouble with Berkeley homework?
fixed_point
Profile Joined June 2011
Germany4891 Posts
June 26 2015 12:42 GMT
#16
On June 26 2015 21:11 Dagobert wrote:
Having trouble with Berkeley homework?

I wish
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
June 26 2015 23:19 GMT
#17
On June 26 2015 21:11 Dagobert wrote:
Having trouble with Berkeley homework?


nah i graduated 3 yrs ago lol i'm doing a phd now.
this problem actually came up when i tried to run a randomly initialized neural network of 10 layers w/o training, and noticing it is always the constant function, so I thought it was really cool so I abstracted away the non-essentials and hope people would find the simplified problem interesting to look at.
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!
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
Last Edited: 2015-06-26 23:22:51
June 26 2015 23:20 GMT
#18
On June 26 2015 19:59 fixed_point wrote:
....
Pretty ironic, given my name...
....





that was my thought the entire time lawl
fffffffffffffffffffffffffffffffff(uck)
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!
Dagobert
Profile Blog Joined July 2009
Netherlands1858 Posts
June 27 2015 07:15 GMT
#19
Oh, that's more interesting than the problem here. What are you trying to get the neural network to do?
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
June 27 2015 23:24 GMT
#20
On June 27 2015 16:15 Dagobert wrote:
Oh, that's more interesting than the problem here. What are you trying to get the neural network to do?

nothing. just want to play with one for fun (cuz people kept talking about their fantastic learning properties). Just want to run it on the mnist dataset. Couldn't do back propagation on the deep one unfortunately, so i trained a shallow one with 94% accuracy, which is not bad i think.
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!
Please log in or register to reply.
Live Events Refresh
WardiTV Winter Champion…
12:00
Group D
WardiTV1079
TKL 207
Rex131
3DClanTV 87
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
TKL 228
Rex 131
ProTech129
StarCraft: Brood War
Britney 30245
Calm 9100
Sea 4189
Horang2 1794
Rain 1620
Bisu 1376
Hyuk 416
BeSt 349
firebathero 278
Pusan 149
[ Show more ]
Dewaltoss 136
sorry 98
EffOrt 89
hero 87
Sea.KH 60
ToSsGirL 58
Soulkey 56
Barracks 38
Aegong 36
scan(afreeca) 25
Hm[arnc] 23
Terrorterran 22
Free 19
910 18
Rock 18
NaDa 12
Dota 2
Gorgc5686
qojqva1523
XcaliburYe83
Counter-Strike
allub360
oskar81
adren_tv16
Other Games
singsing2295
B2W.Neo856
hiko739
DeMusliM324
Harstem197
XaKoH 93
KnowMe92
Liquid`VortiX88
ArmadaUGS78
Trikslyr1
Organizations
Counter-Strike
PGL336
StarCraft: Brood War
Kim Chul Min (afreeca) 15
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• iHatsuTV 25
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota240
League of Legends
• Nemesis4638
• Jankos2033
• TFBlade901
Upcoming Events
OSC
8h 22m
The PondCast
18h 22m
Replay Cast
1d 8h
Korean StarCraft League
2 days
CranKy Ducklings
2 days
OSC
2 days
SC Evo Complete
2 days
Replay Cast
3 days
Sparkling Tuna Cup
3 days
uThermal 2v2 Circuit
3 days
[ Show More ]
Replay Cast
4 days
Wardi Open
4 days
Replay Cast
5 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-02-22
LiuLi Cup: 2025 Grand Finals
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Acropolis #4 - TS5
Jeongseon Sooper Cup
Spring Cup 2026
WardiTV Winter 2026
PiG Sty Festival 7.0
Nations Cup 2026
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025
SL Budapest Major 2025

Upcoming

[S:21] ASL SEASON OPEN 2nd Round
[S:21] ASL SEASON OPEN 2nd Round Qualifier
ASL Season 21: Qualifier #1
ASL Season 21: Qualifier #2
Acropolis #4 - TS6
Acropolis #4
IPSL Spring 2026
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
RSL Revival: Season 4
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
FISSURE Playground #3
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
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.