• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 18:50
CET 23:50
KST 07:50
  • 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
BSL Season 223Vitality ends partnership with ONSYDE20Team Liquid Map Contest - Preparation Notice6Weekly Cups (Feb 23-Mar 1): herO doubles, 2v2 bonanza2Weekly Cups (Feb 16-22): MaxPax doubles0
StarCraft 2
General
GSL CK - new tournament Weekly Cups (Feb 23-Mar 1): herO doubles, 2v2 bonanza Vitality ends partnership with ONSYDE How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game? Team Liquid Map Contest - Preparation Notice
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/ battle.net problems ASL21 General Discussion BSL Season 22 BSL 22 Map Contest — Submissions OPEN to March 10
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: 1711 users

Pi approximation

Blogs > Vin{MBL}
Post a Reply
1 2 Next All
Vin{MBL}
Profile Blog Joined September 2006
5185 Posts
April 06 2008 02:40 GMT
#1
Hey. I wrote this program in BASIC (too noob right now to do it in python ) to approximate pi using this method. This is what I have...

i = 0
pi = 1
n = 3

DO WHILE i < 10000
pi = pi - (1 / n)
n = n + 2
pi = pi + (1 / n)
i = i + 1
LOOP
pi = 4 * pi
PRINT pi


It outputs 2.66 etc; though, not pi like I was hoping for. Obviously there's something wrong with the program. Can you guys help me find it?

Myrmidon
Profile Blog Joined December 2004
United States9452 Posts
Last Edited: 2008-04-06 02:53:40
April 06 2008 02:50 GMT
#2
edit nevermind I'm retarded today, yeah the value of n needs to change twice in your loop
new_construct
Profile Blog Joined September 2005
Canada1041 Posts
April 06 2008 02:51 GMT
#3
when it loops, the n at pi=pi-(1/n) didn't change, u need to add another n=n+2 at the beginning of the loop and set initial value of n to 1 or something
jjl
Profile Blog Joined October 2006
United States85 Posts
Last Edited: 2008-04-06 02:52:48
April 06 2008 02:51 GMT
#4
i think you need another n=n+2 after the the "pi=pi+(1/n)" line

edit: beaten to it, gg new_construct
Vin{MBL}
Profile Blog Joined September 2006
5185 Posts
Last Edited: 2008-04-06 02:53:53
April 06 2008 02:52 GMT
#5
ahh thanks alot

i missed that.
gonna try it now :D

EDIT: IT WORKS YAYYY!!!!!!!
drop
Profile Blog Joined August 2007
Romania306 Posts
Last Edited: 2008-04-06 02:53:48
April 06 2008 02:53 GMT
#6
your lopp does

1-(1/3)
n=3+2
1+(1/5)

***
second recurration
1-(1/5)

edit: ASDF~~!
Insane
Profile Blog Joined November 2003
United States4991 Posts
Last Edited: 2008-04-06 02:56:53
April 06 2008 02:56 GMT
#7
You need to do n = n + 2 before you LOOP.
Edit: Wow, open a page and get some food then come back and reply and the whole world has already posted -_-
Vin{MBL}
Profile Blog Joined September 2006
5185 Posts
April 06 2008 02:56 GMT
#8
I really really like doing these cool math things. Although I'm a programming noob and all. >_>
are there any other rules/formulas I can do something like this with?

How would I go about writing a program that lists all primes from 1 to x? (where x is a number the user inputs). is that above my level?
Insane
Profile Blog Joined November 2003
United States4991 Posts
Last Edited: 2008-04-06 03:03:35
April 06 2008 02:58 GMT
#9
On April 06 2008 11:56 Vin{MBL} wrote:
I really really like doing these cool math things. Although I'm a programming noob and all. >_>
are there any other rules/formulas I can do something like this with?

How would I go about writing a program that lists all primes from 1 to x? (where x is a number the user inputs). is that above my level?

No, it's not really above your level. The "simple" algorithm is the sieve of eratosthenes, which is frequently done in intro programming classes. If you want to do the primes, I recommend you implement that before trying the more advanced sieve of atkin<strike>s</strike>.

Edit: it's atkin, not atkins, oops. also here are some links for it:

http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes
http://en.wikipedia.org/wiki/Sieve_of_Atkin

Edit2: fyi 1 isn't considered a prime number
Edit3: I've never had to implement the sieve of atkin for any of my classes, by the way. If you do decide to do it and aren't familiar with the notation used in the pseudocode, reply here and I'll clarify it for you.
Vin{MBL}
Profile Blog Joined September 2006
5185 Posts
April 06 2008 03:03 GMT
#10
I meant from 1 to x

meaning not including 1

>_>
Insane
Profile Blog Joined November 2003
United States4991 Posts
Last Edited: 2008-04-06 03:06:06
April 06 2008 03:05 GMT
#11
On April 06 2008 12:03 Vin{MBL} wrote:
I meant from 1 to x

meaning not including 1

>_>

Generally when I say "from a to b", I mean the lower limit is inclusive and the upper limit is exclusive
For example, i goes from 0 to 5 &rarr; i = 0, 1, 2, 3, 4
Maybe a geographical thing, dunno!
drop
Profile Blog Joined August 2007
Romania306 Posts
April 06 2008 03:05 GMT
#12
atkins diet :D

Vin - I advise you to use the Excel VBA btw (I know it's not the best, but you will probably use it at work one day - so start getting used to it)

anyway, does any of you have any examples of more complicated VBA macros? I mean I can make the algorythms, but I dont know the syntax too well (e.g. it took me some time to figure out the:
Worksheets("1").Cells(1, 1) = Pi in Excel)

Vin{MBL}
Profile Blog Joined September 2006
5185 Posts
April 06 2008 03:07 GMT
#13
On April 06 2008 12:05 HnR)Insane wrote:
Show nested quote +
On April 06 2008 12:03 Vin{MBL} wrote:
I meant from 1 to x

meaning not including 1

>_>

Generally when I say "from a to b", I mean the lower limit is inclusive and the upper limit is exclusive
For example, i goes from 0 to 5 &rarr; i = 0, 1, 2, 3, 4
Maybe a geographical thing, dunno!


hahah maybe i just suck at communicating math :D

is there anyway to get a goto command in python? from google it seems like there isn't one. i'm trying to convert that pi program from basic to python.
Insane
Profile Blog Joined November 2003
United States4991 Posts
April 06 2008 03:08 GMT
#14
On April 06 2008 12:05 drop wrote:
atkins diet :D

Vin - I advise you to use the Excel VBA btw (I know it's not the best, but you will probably use it at work one day - so start getting used to it)

anyway, does any of you have any examples of more complicated VBA macros? I mean I can make the algorythms, but I dont know the syntax too well (e.g. it took me some time to figure out the:
Worksheets("1").Cells(1, 1) = Pi in Excel)


This sounds like a terrible way to learn programming, and I've never had to know VBA anywhere -0-
It depends upon what sort of job you are going into, I guess.
Insane
Profile Blog Joined November 2003
United States4991 Posts
Last Edited: 2008-04-06 03:12:32
April 06 2008 03:09 GMT
#15
On April 06 2008 12:07 Vin{MBL} wrote:
Show nested quote +
On April 06 2008 12:05 HnR)Insane wrote:
On April 06 2008 12:03 Vin{MBL} wrote:
I meant from 1 to x

meaning not including 1

>_>

Generally when I say "from a to b", I mean the lower limit is inclusive and the upper limit is exclusive
For example, i goes from 0 to 5 &rarr; i = 0, 1, 2, 3, 4
Maybe a geographical thing, dunno!


hahah maybe i just suck at communicating math :D

is there anyway to get a goto command in python? from google it seems like there isn't one. i'm trying to convert that pi program from basic to python.

:/
"Go To Statement Considered Harmful" - Edsger Dijkstra
'Modern' programming doesn't use goto statements, and you should avoid them. You can achieve the same effects from the use of functions and loops. (ed: though you don't really need any functions for the pi program, I just meant that in general.)

I don't really know Python, but I'll take a look at it -0-
Vin{MBL}
Profile Blog Joined September 2006
5185 Posts
Last Edited: 2008-04-06 03:18:50
April 06 2008 03:11 GMT
#16
is there anyway to get a while do in python? I can't find it here

Are you a compsci graduate Insane? I'm a high school junior that's having a bit of a problem deciding between compsci and engineering. (since I have little programming experience because CompSci classes in my country are basically non- existant
Insane
Profile Blog Joined November 2003
United States4991 Posts
Last Edited: 2008-04-06 03:15:22
April 06 2008 03:14 GMT
#17
On April 06 2008 12:11 Vin{MBL} wrote:
is there anyway to get a while do in python? I can't find it here

I don't know basic either, lol
a for loop will work for what you want though.
Googling around it looks like you want something like
for i in range(0, 1000):



Are you a compsci graduate Insane? I'm a junior that's having a bit of a problem deciding between compsci and engineering. (since I have little programming experience because CompSci classes in my country are basically non- existant

No, I'm a comp sci undergraduate in my 3rd year.

Edit: I just downloaded python, gonna install now.
tiffany
Profile Joined November 2003
3664 Posts
April 06 2008 03:29 GMT
#18
i wrote a primes sieve program in C, let me know if you would like some help
Insane
Profile Blog Joined November 2003
United States4991 Posts
April 06 2008 03:29 GMT
#19
Cool, my first python program.

<pre>
pi = 1.0
n = 3.0
for i in range (1, 10000):
pi = pi - (1.0/n)
n += 2
pi = pi + (1.0/n)
n += 2
print pi * 4
</pre>
Probably violating all sorts of python coding conventions
3.14164265609
Vin{MBL}
Profile Blog Joined September 2006
5185 Posts
April 06 2008 03:30 GMT
#20
hahaha nice!

Why did you use 1.0 and 3.0 instead of just 3 and 1 though?
1 2 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 1h 10m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
elazer 253
SteadfastSC 219
ProTech137
JuggernautJason95
CosmosSc2 5
StarCraft: Brood War
Artosis 489
ggaemo 87
LancerX 23
Dota 2
monkeys_forever338
Counter-Strike
byalli746
Super Smash Bros
AZ_Axe44
PPMD36
Heroes of the Storm
Liquid`Hasu416
Other Games
gofns54535
tarik_tv17998
summit1g7636
Grubby3789
FrodaN1035
shahzam329
ToD168
C9.Mang0137
Maynarde75
ZombieGrub60
Organizations
Other Games
gamesdonequick2269
BasetradeTV35
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Hupsaiya 87
• musti20045 37
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Eskiya23 11
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• TFBlade1233
Other Games
• imaqtpie1411
Upcoming Events
OSC
1h 10m
Wardi Open
13h 10m
PiGosaur Monday
1d 1h
WardiTV Team League
1d 13h
Replay Cast
2 days
The PondCast
2 days
WardiTV Team League
2 days
Replay Cast
3 days
Replay Cast
4 days
CranKy Ducklings
4 days
[ Show More ]
WardiTV Team League
4 days
uThermal 2v2 Circuit
4 days
Replay Cast
5 days
Sparkling Tuna Cup
5 days
WardiTV Team League
5 days
Replay Cast
6 days
Replay Cast
6 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.