Announcing the USMCA

by BOGTRO, Aug 29, 2018, 10:32 PM

Hello everyone,

After more than a year in the making, I'm extremely excited to finally announce the US Math Competition Association (USMCA)!

https://i.imgur.com/tyob2vq.png

As some of you know, the USMCA is an organization I've been working on developing for some time now, with the broad aims of improving college-run math competitions nationwide. We do this along two major axes:

1. Developing technical tools for contests to use, e.g. for problem management and grading.
2. Organizing a "national circuit", to spur participation and increase the geographical reach of the math contest ecosystem.

I'll be mostly talking about (2) in this post, but if you are a contest organizer (or especially an aspiring contest organizer!), we highly encourage you to reach out to us for more about (1).

The USMCA national circuit works as follows: teams earn "circuit points" by performing well in partner competitions, and near the end of the year the top 30 organizations qualify for the USMCA national championship. This year, the partner competitions are:

Princeton University Math Competition (PUMaC): November 17, 2018
Caltech Harvey Mudd Math Competition (CHMMC): December 2, 2018
Carnegie Mellon Informatics and Mathematics Competition (CMIMC): January 26, 2019
Berkeley Math Tournament (BMT): March 2019
Math Majors of America Tournament for High Schools (MMATHS): April 2019

The USMCA national championship itself is a remote contest that can be taken during a one-week window in early May, with two divisions: Premier (top 10 teams) and Challenger (next 20 teams). The Premier contest consists of an 2-hour, 8-problem Olympiad style test, while the Challenger division consists of an 2-hour, 30-problem short answer style test. Both divisions admit teams of up to 8 participants. More details will be sent to qualifiers in late April.

I'll be around in this thread to answer any questions :) You can also contact us on social media, so please help spread the word!

Facebook: https://www.facebook.com/USMCA01
Twitter: https://twitter.com/USMCAmath
e-mail: director (at) usmath.org

FAQ

Putnam 2015

by BOGTRO, Dec 6, 2015, 10:16 PM

Well, my first experience with the Putnam contest was yesterday, and it was definitely an interesting experience. Beforehand, I didn't really have much idea what to expect; I'd done some "practice" problems with other people, but messing around with problems in a group is very different from working on them individually during a contest. What I did know is that the prerequisite knowledge base would presumably be higher than for high school contests -- in particular, calc and lin alg would probably be making appearances.

Unfortunately, despite 18.701 I'm apparently not very comfortable with lin alg, so I got absolutely nowhere on the one problem that used it. In my defense, this was at least partially because the entire B set was evil and I didn't even read B3 until a couple hours into the test; sadly, this also caused my proof-writing to be... somewhat lacking, so I might end up with three 1s on the three problems I solved on B (darn).

Anyway, these are my solutions, attempting to reconstruct exactly what I wrote on the test. After section A I was very confident since I was pretty sure I had four solid solutions (hopefully this is accurate), so I figured as long as I didn't completely bomb section B I should be in a solid spot to get HM. Unfortunately part A used up all the NT :(

A1

A2

A3

A4

Section B was much more stressful; I'd been actively hoping there wouldn't be too much calc, but B1 was some annoying diffeq that I didn't really have any good ideas how to approach (other than the coefficients suspiciously looking like $(x+2)^3$). At least it was a #1 so I could get through it quickly and move on to more interesting problems... or so my reasoning went until half an hour later I had zero progress. So I tried B2 for a while, but got absolutely nowhere, and B3 looked hard, so I floated aimlessly between B1 and B2 for a while while getting more and more frustrated.

Eventually I finished B2 first, using an induction that I wasn't (and still aren't) fully confident in, but I definitely solved the problem so hopefully it'll get a 10- grade. Finally, with about half an hour left, I finally came up with the insight as to how B1 would die, so I finished that with about 20 minutes left. Then I looked at B4, which was definitely the easiest problem of the set (maybe I should have looked at this before...), but time pressure made me butcher the computation at the end, and apparently Putnam is very unforgiving towards irrelevant mistakes so that might get a 1 T.T

B1
Motivation

B2

B4
Better finish

AMC answer frequencies/adventures with Python

by BOGTRO, Oct 25, 2015, 2:52 AM

So tonight I decided I should actually figure out how Python works, since the language made no sense to me and yet it's somewhat important anyway. As usual, instead of actually learning how something works, I decided to start with a problem, write some god-awful attempt at making an attempt towards doing the problem, and eventually building up something working through (heavy) use of google.

Anyway, the problem I decided to do was to determine the frequency of AMC answers over the last few years (where "few" in this sense turned out to be 14), because
  • Someone once said, long ago, that this would be an interesting programming exercise.
  • It seemed like something that would actually be a good practical programming exercise, as opposed to the USACO/Codeforces/etc. that I usually do.
  • It's apparently extremely difficult to do this exercise in a major language other than Python, so it seemed like it would be well-suited to my purposes.
Unfortunately, it turned out that downloading Python was pretty difficult, and for some reason I decided not to download an actual IDE (something reason something), so it took me quite a while to figure out how to get it set up, and since I'm computer-illiterate I couldn't even find what directory I'd put the download in...

Anyway, after several adventures messing with the system path and trying to get the standard libraries to actually work, it appeared that "HelloWorld.py" in Notepad++ was actually running properly in the command prompt, so I could finally get started on the problem. But turns out that Python 3.5 and Python 2.7 are very distinct things, and so
print 'Hello World!'
didn't work. Oops. Ok, so now I actually got HelloWorld.py to run properly, so I could finally actually get started on the problem.

All this is to lead up to a couple of hours later, where results were achieved!
_________AMC 12_________
Problem 1: 6 1 12 4 5
Problem 2: 6 6 6 6 4
Problem 3: 5 7 4 6 6
Problem 4: 6 11 5 2 4
Problem 5: 6 5 6 10 1
Problem 6: 9 6 4 6 3
Problem 7: 3 10 6 6 3
Problem 8: 4 3 11 6 4
Problem 9: 7 8 6 5 2
Problem 10: 6 7 4 6 5
Problem 11: 3 3 9 6 7
Problem 12: 2 8 2 12 4
Problem 13: 1 11 5 8 3
Problem 14: 3 4 6 12 3
Problem 15: 3 5 7 11 2
Problem 16: 3 6 9 5 5
Problem 17: 4 9 4 9 2
Problem 18: 3 8 9 5 3
Problem 19: 4 7 4 5 8
Problem 20: 3 9 8 3 5
Problem 21: 9 2 7 7 3
Problem 22: 3 5 9 6 5
Problem 23: 7 7 7 4 3
Problem 24: 3 6 8 7 4
Problem 25: 3 8 5 7 5
Total: 112 162 163 164 99
_________AMC 10_________
Problem 1: 3 1 13 7 4
Problem 2: 5 7 7 3 6
Problem 3: 6 6 4 7 5
Problem 4: 6 6 8 6 2
Problem 5: 3 9 6 5 5
Problem 6: 6 6 7 7 2
Problem 7: 6 9 7 3 3
Problem 8: 4 9 4 6 5
Problem 9: 6 10 2 8 2
Problem 10: 6 4 8 3 7
Problem 11: 5 7 9 5 2
Problem 12: 8 4 10 3 3
Problem 13: 3 7 6 6 6
Problem 14: 4 7 6 9 2
Problem 15: 3 5 5 8 7
Problem 16: 3 9 4 7 5
Problem 17: 2 9 8 8 1
Problem 18: 2 7 4 8 7
Problem 19: 4 3 11 5 5
Problem 20: 4 5 5 11 3
Problem 21: 5 6 8 6 3
Problem 22: 4 8 7 8 1
Problem 23: 1 8 7 9 3
Problem 24: 5 9 3 5 6
Problem 25: 4 12 6 4 2
Total: 108 173 165 157 97
Interestingly, B/C/D have almost exactly the same frequency, while A/E are significantly far behind on both tests, though the 10 has a very slightly higher concentration of Bs. Use this extremely important information wisely.

For those interested, the code is below, but if you're planning on C&Ping be warned that it takes about a minute to run.
Python code

Invert about the 4-sphere

by BOGTRO, Sep 3, 2015, 4:50 AM

Wolstenholme also wrote up his perspective on this excellent process here

2 years ago, both me and Wolstenholme attended AMSP Cornell 2013. Since everyone knows how incredible I am at geo, I took Geo 3 (aka "Cosmin murders you"). Wolstenholme took this for dumber reasons (i.e. he actually knows geo).

Anyway, I got pretty murdered throughout that class, but that's not the point of this particular post. At some point during Geo 3, we talked about the excellent topic of inversion, which Wolstenholme knew and I did not. So I was asking him how inversion worked, he explained it to me, and I asked him whether this was limited to 2 dimensions -- i.e. can we invert about a sphere? He responded "yeah... we could invert about a 4-sphere if we wanted to". Little did we know...

Fast forward 2 years to MIT orientation, part of which involves taking ASEs (Advanced Standing Exams) to test out of classes you already know the material for. In my case, since multivariable calculus is pretty boring and I didn't really want to bother with it for an entire semester, I decided to take the 18.02 (multivariable calculus) ASE without knowing multivariable calculus.

Perhaps that wasn't a particularly great idea, but I still had a week or so to learn the subject, so it was probably going to be ok. Also I was taking the makeup version of the ASE, because at the time it was scheduled I would be taking the 8.01 (Physics I) ASE (which I didn't end up actually taking, but that's a story for another day...). On the other hand, most of the math crew here (including Wolstenholme) had already gotten credit for 8.01 through AP Physics, so they took it the day before I did.

Alright, so 2 weeks pass, and it's time for me to demonstrate my extensive knowledge of multivariable calculus. The day before, Wolstenholme mentioned how easy the ASE was, and that it didn't actually have questions on most of the harder material (e.g. surface integrals), so I was pretty chill. So I breezed through the first ~9 (of 20) questions, struggled through the next few, and finally reached #14 (ok maybe not #14 but w/e), which I was completely stumped on...
MIT wrote:
The sphere $\rho=a\cos\phi$ is tangent to the $xy$-plane. Compute the average distance to the origin over the set of all points inside this sphere.

Also I should mention that spherical coordinate problems made me very sad, because there was a lot of computation, so I basically skipped them during my hardcore training.

Anyway, so first of all we have to figure out what this $\rho=a\cos\phi$ thing means, which is basically saying we have a sphere of radius $a$ centered at $(0,0,a)$. Ok that part's done, yay. Unfortunately, the rest isn't too easy to deal with: we can do the standard substitution of $x=\rho\sin\phi\cos\theta, y=\rho\sin\phi\sin\theta, z=\rho\cos\phi$, but unfortunately the bounds here aren't so nice: we still have $0 \leq \phi \leq \pi, 0 \leq \theta \leq 2\pi$, but bounding $\rho$ involves some semi-annoying trig that results in a pretty ugly integral.

So I figured there was probably a better way, especially considering the answer choices (sidebar: why the hell are there answer choices???) were of the point $qa$ where $q$ was rational ($\frac{5}{4}a$ and $\frac{6}{5}a$ were the only reasonable ones). Unfortunately I couldn't find said better way, burned 40 minutes, and just moved on to other problems (eventually I made up some garbage like the answer was $\sqrt{a^2+k^2}$ where $k$ is the expected distance from the ball centered at the origin with radius $a$ [which comes out to $\frac{3}{4}a$], but it's totally wrong).

Ok, so the ASE ends, but I can't really get this problem out of my head because I'm so certain that there must be a nice way to do it. So after some unsuccessful conceptual ideas, I go ask Wolstenholme, whose first reaction was "that's 100x harder than anything we had on our test". Darn. So we briefly try this, conclude there's probably no good way, and go off to lunch.

At lunch, we meet Christopher Shao, who's also pretty good at math so I give him this problem also. Unfortunately, the three of us still can't find a particularly great way to do this problem. Finally, at some point I'm like "guys, what if we like invert about the sphere". I was actually serious (more out of desperation than anything), but Wolstenholme just started laughing before he realized I wasn't trolling. So at first we're all like "ok this is dumb", but then gradually we realize "wait........ does this actually work"

Indeed, inversion is actually quite motivated here: the ball in question is sent to a half-space (this took a while for us to work out though), and eventually we realized that this half-space doesn't actually start at $z=0$, but instead the half-space is bounded by the plane containing the intersection of the two spheres (since the inversion sends the "top" of the ball in question to that plane). So we end up with the triple integral $\int_{-\infty}^{\infty}\int_{-\infty}^{\infty}\int_{\frac{r^2}{2a}}^{\infty}\text{something}$ from the definition of inversion, which seemed relatively promising.

So anyway, we couldn't really work this out without paper, so we went to go do other stuff and eventually Wolstenholme and I reconvened to solve this problem. After many, many, many failed computational attempts, we finally came up with the following excellent solution...

Writeup credit to Wolstenholme

The great thing about this solution is that it works in effectively the same exact way for other dimensions, which means that -- after 2 years -- "invert about the 4-sphere" is finally a legitimate strategy for solving a problem. I'm unreasonably happy right now.
This post has been edited 1 time. Last edited by BOGTRO, Sep 3, 2015, 4:52 AM
Reason: Added link

...College...

by BOGTRO, Aug 20, 2015, 11:29 AM

So it turns out that time is not, in fact, infinite, and in something like a week and a half I'll have officially left the realm of high school.

I'm not entirely sure how to feel about this: on the one hand, I'm mildly excited (at least to the extent that I get excited, which is not very much -- I'm a pretty emotionless person in general) to be "moving on", but at the same time I sort of already miss the prospect of another year of high school.

Obviously, this a big part of this relates to competitions. I've consciously made the competitive math scene the biggest portion of my life for what will, in a few months, be a full decade, so leaving it behind is closer to the "bitter" in "bittersweet moment". It's not even accurate to say some of my best times have happened while at one of these competitions; rather, almost all of them were (they were generally only tangentially related to the math though :)). The realization that I will literally never participate in one of them again is one I had a while ago, but the full magnitude of which is just starting to hit me.

But probably more pertinently, the prospect of "growing up" is frankly pretty frightening, since I've never actually paid much attention to how to... well, live. My parents instructed me to put together a list of things I'd need to get before college, but I realized I had absolutely no clue whatsoever: how exactly does a Kat live a life? There's also a weird flurry of "wait, I can vote", trying to work out how normal people transport themselves from place to place beyond "Dad, I have to go somewhere tomorrow", "what's a tax form??", and other things that I definitely should have paid more attention to when I was younger.

On the topic of things I should have paid more attention to when I was younger, I'm quickly discovering that my conscious strategy of not learning a whole lot of higher math in high school ("I'll do competition stuff now; I can always do higher math stuff in college!") is sort of imploding in my face. More specifically, multivariable calculus is just really annoying to deal with, and I really don't want to have to deal with it for a semester, so I really wish I had gotten this out of the way at some point in the past (for those of you with some familiarity with MIT, my end goal here is to take 18.701 which is actually interesting math). I guess we'll see if my "study an entire subject in a week" manages to hold up as well for MIT as it did for all the standardized testing (my guess is... no).

There's also one final factor to this whole complex of emotions: college is, "traditionally", effectively the death of a chess career (besides those who go to colleges with strong chess programs such as Webster/TTU/UMBC/etc.), both because there's little time to devote to study (which, frankly, wouldn't affect me much because I rarely studied seriously) and because actually playing in events is problematic -- both because of transportation issues and the fact that serious chess tournaments last ~5 days, which doesn't work very well with school schedules. So while I plan on staying sort of into chess in the future, from a realistic perspective it's not going to be a serious pursuit anymore.

So that's where I've been for the last couple months or so: willfully ignoring the fact that everything I did in high school is -- more or less -- no longer a part of my life, and dodging the fact that I'm actually responsible for myself now and I should do things that responsible people do. Ok, this is a bit strong -- I don't plan on terminating involvement with the math competition community (far from it in fact, as you HMNTers will find out :D), and I don't plan on abandoning chess completely -- but it's somewhat true in spirit.

Anyway, I don't make posts just to rant about my life being non-ideal; there's actually something of useful substance to follow :) One of the interesting things about going to MIT is that pretty much everybody knows what the place is -- its name recognition seems to be almost as good as e.g. Harvard's. I was on a plane back from Arizona, working on writing HMNT questions, when a couple next to me asked me what type of math I was working on. Of course, the usual difficulty in explaining competitions to laypeople followed, and basically everyone within the row (who was, of course, listening in because America!) was pretty confused. Eventually, though, they asked where I was going to college, I told them, and then everyone seemed to be suitably impressed and no longer confused (I, on the other hand, was extremely confused). A few months back, I was playing at the Philadelphia Open, when some parents came up to me and asked variants of "I heard you got into MIT, any tips?" without any real prompting (I still have no idea who most of them are, or how on earth they even heard of this). Then, finally, at the World Open I had a rather lengthy discussion with a friend's parent about the subject of college admissions, which was eventually followed up via e-mail.

Now, I'm not exactly an expert in the fortune telling business of optimizing for college admissions***, but I guess I did something right considering I got in to the best school on the planet (intentionally inflammatory ;)). Also, the world of college admissions has a ton of totally inaccurate information being thrown about (a search for closure, perhaps?), some of which seems to be genuinely misguided, some of which is straight up stupid, and some of which is... indicative of other motives. What's particularly interesting, however, is how much of this misinformation passes through AoPS, a community that should really know better. So, I figured I'd touch on the topic a bit on here, because I think the subject gets way more attention than it deserves and people should get back to doing useful things (like math). I also want to have something to copy and paste when I get more of these questions MY MOTIVES ARE ALTRUISTIC

First of all, there are a ton of threads about quantitative stats, especially "chance" threads, that crop up all over the place -- even on AoPS (if you want to kill a few hours of your life, you can see tons more these on collegeconfidential). These threads, almost invariably, completely miss the point. Let me tell you something that any admissions officer will tell you, but students choose not to believe for some reason: there is essentially no difference between a 2200 and a 2400 on the SAT (obviously, this applies equally well to other tests). Ok, perhaps there's some argument that the lower bound there should be closer to 2250 or whatever, but the point is the same: past a certain relatively low score, there is literally no benefit to devoting a ton of time to the test, and there is definitely no point to retaking a test to improve on a 2250 or whatever. I know people who retook the SAT after getting a 2370; some of them ended up getting their 2400, but basically wasted that time.

Similarly, there's not a great deal of difference between anything above a 3.7 GPA or so (i.e. mostly As with some unusual Bs); use the time you would otherwise spend agonizing over fractions of points doing something useful instead.

The point here is that colleges view quantitative data as a simple question: "are you academically qualified to be here?". If your scores show that you are, then how much you exceed the threshold by is largely irrelevant*. This is the source of the numerous threads that pop up sometime around decisions date positing something like "how did I get rejected with a 2400 SAT?? Affirmative action kappa", dumb stories like students sending colleges rejections of rejection letters, or dumb actions like actually suing a college over being rejected. If only people understood this really simple point...

By the way, you will get sufficiently decent scores without a whole lot of specialized studying as a result of doing useful things. I didn't study for the SAT at all (for real; I'm not fishing for respect here), but I've read voraciously and written often throughout my life as a matter of choice; as a result, when I actually took the SAT, I did perfectly fine (apparently I got a 2290, but I had to look it up to see what score I actually got). Here's a group of ten words ostensibly classified as "SAT words":
Abhor
Bigot
Counterfeit    
Enfranchise    
Hamper    
Kindle (not by Amazon...)
Noxious    
Placid
Remuneration
Talisman
I can't tell you anything resembling a dictionary definition of any of these ten, but I've used all of them in some form before (though to be fair, I've probably only used "talisman" in this context). The point is that these are things you should pick up through common usage; actually sitting down and trying to study these things is a huge waste of time and effort.

So what does actually get someone admitted? The overwhelming factors are qualitative data -- things you can't put a standardized number to. These are both things like accomplishments that can't be directly compared (e.g. AIME qualification is good, USAMO qualification is great, national debate team is great -- which one of the latter two is "greater"?) and the most dreaded part of the application: the essays.

First, some words on accomplishments/extracurriculars: if you don't care about it, neither will the college. I know it sounds overly romantic, but don't do things solely for the benefit of a college application: you'll end up viewing it as an obligation, and it probably won't end up helping your application that much anyway. That said, value to colleges is definitely a valid criteria to pay attention to -- just don't let it become the main one.

What colleges really want to see is a passion for a subject. Passion is something that's technically possible to fake, but frankly it's easier to do something you're passionate about in the first place. Besides the criteria of tangential relevance, there's not a whole lot of difference between activities (e.g. passion for video games is not interesting to colleges, but passion for math and passion for sports are probably weighted nearly equally). Obviously, the level of achievement matters as well, but the passion and dedication to something is far more important. Many people were surprised when I told them I basically only did math and chess in high school, since the stereotypical picture of a top applicant is one with a ton of different clubs/activities; what they presumably didn't realize was that I was putting the equivalent to a part time's job worth of hours into those activities. That's far more important than getting your name on the NHS membership rolls for application season.

Ok, on to essays. College essays are not very well understood by students in general (probably myself included), but it seems like this issue is exacerbated on AoPS (which is understandable, since most AoPSers prefer math to writing). The highly subjective nature of what makes a "good" essay -- let alone a college essay -- doesn't help either, especially since almost all applicants have no real formal training in writing (high school English doesn't count).

So what makes a good essay? Paradoxically, you don't want to describe yourself to the reader -- despite this being the whole point of the section. Instead, you want to tell them about youself, and let them fill in the blanks. This is a very subtle difference that's not too well understood by many (again, myself included); the most obvious place where it applies is telling a story illustrating something, rather than just saying that thing immediately. For example, here's the first paragraph of one of my essays (the prompt for which was "What attribute of your personality are you most proud of, and how has it impacted your life so far? This could be your creativity, effective leadership, sense of humor, integrity, or anything else you’d like to tell us about"):
Quote:
A few weeks ago, my father accidentally got a lid stuck in a pot. After some unsuccessful efforts to extricate it, he decided that the five-dollar lid wasn't worth the effort and he'd break and simply replace it. That wasn't good enough for me. After several unsuccessful approaches, I sat down and just stared at the pot for a few minutes, trying to figure out how to safely remove the lid. My parents were highly amused at the spectacle, and their amusement grew as I collected my materials: a straw, a binder clip, a rubber band, an ice pack, and a bowl of water. An hour later, it was free.
(copied verbatim to preserve historical integrity, feel free to rip it to shreds)

This type of paragraph is infinitely better than something bland like
Quote:
The personality trait of which I am most proud is my tenacity. I always work very hard to solve any problem, and I never give up until I'm completely satisfied with my solution. One illustrative example is last week, when my class was given a problem that proved too difficult for any of us to solve, including the teacher. Everyone else quickly forgot about the problem, but I couldn't accept not knowing the solution, so I spent the rest of the day trying several different methods until I finally found the answer.
Hopefully you can see why. Anyway, you can get a better illustration of this concept here. This second of the two paragraphs is more or less the reason why you occasionally hear things like "SAT perfect scorer rejected from [Ivy]", usually accompanied by passive-aggressive use of the media ("I don't want to brag about my achievements, but...") and straight up dumb comments ("...I feel I would have gotten in if colleges were a meritocracy, because that girl over there only got a 2390 on her SAT"). Did I mention that I really hate this type of media coverage? It's also probably the reason that AoPSers get rejected; most AoPSers' academic qualifications are perfectly fine.**

Anyway, the main takeaway I want people to get from this is that the college admissions cycle gets way too much attention in general, but mostly from the students going through the process. There's no particularly good reason to do things "for college" -- while this can be done in a pseudo-sneaky way, students almost always lack the subtlety to pull this off and just end up hurting themselves. Of course there are exceptions -- some students manage to get away with this and get into elite institutions, but even they aren't living the good life: their reputation among their peers summarily tanks, and they once again end up hurting themselves anyway. This isn't to give an unqualified "do what truly motivates you", since college admissions is a very valid concern to have, but in practice it comes pretty darn close.

* For those interested: my SAT score was a 2290 (800 math/760 reading/730 writing), I took four AP tests (Calc BC, Physics C Mechanics, Statistics, Computer Science; 5 on each), 2 SAT subject tests (Math II and Physics; 800s) , and that's the extent of my quantitative data. You'll note that these are not particularly great scores -- sufficiently solid, but nothing to celebrate -- and they're relatively easily attainable by most people who manage to make their way to this blog. So questions like "will a B kill my chances for Stanford?" or "should I add my 17th AP over the summer?" are just answered by a straight up "No"; my academic qualifications were fine, and yours probably will be too.

** I put quite a bit of effort into my MIT essays, both because MIT was by far my first choice of school and because I was applying to MIT early. In comparison, I put practically no effort into my Princeton essays at all (I more or less copied stuff from my MIT essay where applicable and freewrote the remaining prompts), and was summarily rejected (I think the interviews might actually have had a larger effect -- the MIT interviewer was excellent, the Princeton interviewer not so much -- but that's a story for another day). The actual application requires effort -- make sure your essays are as good as they can possibly be. For most of you, that's the deciding point of your entire application.

*** You know who are experts? Admissions officers. Listen to what they say!
This post has been edited 1 time. Last edited by BOGTRO, Aug 20, 2015, 11:30 AM
Reason: "You have used a banned term"??

Have we run out of problems?

by BOGTRO, Jun 18, 2015, 4:11 PM

It's a problem that nobody is really talking about right now, but one that definitely appears to exist in the competition sphere today. We're a far cry from the 1970s when problems were almost assuredly original -- and, as a corollary, much easier than today's -- and the competitive math scene was booming (in some sense of the term "booming") following the inception of the USAMO. The influx of new and exciting concepts provided a stark contrast to the cut-and-dry versions the classroom offered, and students became attracted to the competitions for basically identical reasons to today.

Interestingly, the history of math contests is surprisingly difficult to lock down, so it's worth a brief overview here (much of this is adapted from the excellent read Countdown by Olsen). Competitive math in the US started basically in 1950, with the introduction of what is today better known as the AMC 12. Local contests, perhaps most notably NYSML (which continues to run to this day, and provided the groundwork for the creation of ARML), also sprung up during that decade. But it was not until a 1971 editorial sparked interest in the International Math Olympiad -- up until then the battleground for eastern Europe and the Soviet bloc -- that the concept fully began to take off. A year later, in 1972, the USAMO was created, and the US sent their first 8-member team to the IMO in 1974.

That team was special for many reasons: not only was it the first ever US IMO team, it finished second among eighteen teams (just behind the Soviet Union). Perhaps more pertinently though, you might recognize some of the members:
  • Eric Lander who, besides co-chairing the PCAST and being an MIT celebrity, is one of the most respected geneticists in the world and an all-around amazing person
  • Paul Zeitz, a name any serious math competitor is surely familiar with.
This paved the way for a whole new wave of competitive spirit, and middle schools jumped into the scene in 1983 (1984?) with the introduction of MATHCOUNTS.

Jumping ahead to the next major event in math competition history, AoPS arrived on the scene in late 2002/early 2003. Adding the internet into the competitive sphere drastically changed the scene; no longer were practice materials difficult to come by, and organized training material (AoPS books etc.) was available for essentially the first time. The effect didn't take long to materialize; compare contests from pre-2002 to contests from post-2005 and witness the huge shift in difficulty.

Anyway, history lesson over; back to the main point. This ease of access and the collection of standard strategies/tricks AoPS offered had a downside to it: it became quite difficult to write truly original problems. Some contests, like MATHCOUNTS, became notorious for "borrowing" questions from old editions of other contests, but we're increasingly starting to see this in other contests as well. ARML Local, for example, had a recent event in which an entire contest was basically "borrowed", and even the AMC -- the unquestionable standard to which all competitions are measured (there's a reason we call things AMC/AIME/Olympiad-level) -- has become increasingly unoriginal as well.

The point is not to complain about these contests or anything of the sort (so go put your pitchforks away before continuing); the point is that it's practically impossible to write an original problem these days. And when one is managed, it's often identical to some other problem in spirit. Contest math has always prided itself on utilizing elementary techniques in clever ways, but it increasingly seems like our cleverness has finally caught up with us.

This is largely because of the truly gigantic number of competitions going on today. Besides the major on-site ones (ARML, HMMT, PUMaC, etc.), there is no shortage of smaller, more regular ones (NIMO, USAMTS, many local contests, etc.), and even a steady supply of mock tests to fill the interim -- not to mention nearly every country's olympiad/selection series (AMC/AIME/USAMO and equivalents). In short, there are many more problems than one person could ever hope to do -- but they are relying on a rather finite number of techniques.

Nowhere is this problem more evident than Olympiad number theory -- or, should I say, the total lack of it. NT problems are few and far between, and the few major ones that are classified under NT are... not NT. I believe the reason is rather simple: we've more or less run out of interesting problems to ask in elementary number theory. To get back to interesting, good problems, we have to appeal to higher level number theory, which brings up the major question: why don't we?

From its inception, contest math has been all about applying techniques any high school students knows -- meaning, essentially, the fundamentals of algebra and geometry -- and applying them in clever ways to create and solve problems. It's a romantic ideal, to be sure, but have we simply moved past the point where that is possible? More pertinently, do we seriously believe we're doing this? Yes, it is technically true that all our contest problems utilize only "elementary math", but does anyone seriously believe typical high school students are even vaguely familiar with inversion, Muirhead, or even the basics of graph theory? We accept that all these things are de facto prerequisites, but does this not tacitly acknowledge that the ideal we focused on decades ago has long passed us by?

At some point, we need to revisit our concept of what is "higher math" and what is not. Of course, whatever division is made will be largely arbitrary, so it is a dumb argument to simply say something like "math competitions should have calculus in them" without qualifying that statement. But it is clear that the division we are using is leaving us starved. In an age where resources are available literally at the press of a button, do any of the major arguments against higher math hold much weight anymore? I don't think so...
  • Higher math should not be used because students are not generally introduced to it until college.
Ok, but students are not generally introduced to almost anything we treat as basic knowledge for competitions until at least college. It is well-established that schools are generally pretty terrible at teaching math for anyone even slightly above the average student, and it is no longer difficult or unreasonable to learn material outside of school, so why do we cling to this outdated constraint?
  • Higher math should not be used because students will not be able to solve problems involving it.
This argument is, quite simply, refuted. PUMaC has, for years, been willing to put high-level math concepts on their power round (albeit at a "baby steps" pace), and the general consensus among top teams is that a) it's hardly anything new to them (note that this hits hard against the first argument as well), and b) it's pretty easy. Consider last year's number theory power round on what is essentially graduate-level material: several teams scored above 200/210. This phenomenon is even better evidenced by HMMT's relatively new initiative, the HMIC, which recognizes that top students are almost invariably already familiar with higher-level math anyway, and there are many many nice problems that can be written using it. Scores on this are quite respectable.
  • Higher math should not be used because TRADITION!
The thing is that we're already starting to see a ton of problems that are really based off of higher math anyway. The best example is probably USAMO 2008 Problem 6, in which the solution is basically "do group theory and/or linear algebra and just basically be done". A lot of later-end HMMT problems, in particular, are essentially adaptations of higher math for which elementary solutions can be found. So in reality this is not even that novel a concept.
  • Higher math should not be used because there are still plenty of problems in elementary math left to be discovered
I mean, yes, the title of this post is unnecessarily alarmist -- we're hardly out of problems. But we're definitely getting there. But what is the point of constraining ourselves to this unnecessarily restrictive ideal when there's a ton of beautiful problems that we're outright ignoring? It feels more than a bit like the $\pi$ constraint in writing (each word should be the next digit of $\pi$): yes, constructing something fulfulling the constraint is very satisfying and often quite beautiful, but there are plenty of other works of literature that are no less appealing simply because they avoid an arbitrary constraint.
  • Higher math should not be used because it forms an unnecessary barrier to competition entry
This is the sole argument that makes sense to me, but then again not really. In theory, newbies should be able to approach all the questions without the need for onerous background knowledge; in practice, a newbie wouldn't notice any real difficulty shift if we replaced the last question with the abc conjecture. It is indeed true that contests should not be entirely replaced with higher math -- that would be totally antithetical to the purpose of competitions -- but I think it's high time that we start the process now.

How can this be done? Fairly simply; take it from the top: Make (with proper prior announcement) the IMO involve higher math. Only in the #3/#6 slot, for now, as this is unlikely to affect results in a particularly meaningful way -- in today's world, anyone who's solving #3s/#6s almost certainly has higher math knowledge -- and has the potential to dramatically improve problem quality (there might actually be a real NT question!!). At some point the USAMO will likely follow suit, and then perhaps the AIME will include some easy higher math questions (yes, these exist -- see the early Putnam problems). Other competitions, like HMMT and perhaps PUMaC, will start including these as late problems. This will all further expand the number of people familiar with higher math, and those who don't want to bother with it won't see a huge difference if they don't (if you're not willing to spend much time on higher math, you probably weren't too willing to spend time studying to solve #3s on USAMO either). And, as an added benefit, math competitions will have even more transferrable skills.

Of course, the addition of higher math to the math competition canon is hardly a new one; it comes up every so often and tends to get roundly shouted down. But it seems that now is the time to give it serious consideration once again. The IOI (competitive programming) community is adapting to the changing times; will math follow suit?

Compilation of useful posts

by BOGTRO, Jun 6, 2015, 9:26 AM

This is a compilation of AoPS posts that I feel are useful in some fashion. Some of them are mine, not because I feel they are necessarily the most useful posts around, but because I think they're generally useful nonetheless and they have the benefit of my complete agreement with their author (I also need to make reference to them on occasion, so it's helpful for me to have them in one place). Many others are posts that made a big impression on me throughout my contest career - you'll note that many of these posts are by v_Enhance, who is undoubtedly the leading authority on these matters (even if he protests this point). Others contain useful mathematical information, such as problem sets or articles about particular techniques. Finally, some simply contain oft-requested factual information, such as qualification processes.

I began collecting these posts as a simple matter of convenience: I'm often asked the same questions by many different people, and having posts handy to point them towards saves us all a lot of time - not to mention that many of these posts make the point far better than I could articulate. But when collecting the answers to questions I'm frequently asked, I realized that there is simply far more quality material on this website than people think to ask about. My goal in this compilation is to provide a centralized source of some - but certainly not all, as I could not hope to do justice to all the quality material on this website with a single compilation - of this quality content, and I hope that readers will get the answers to questions they haven't even thought about yet.

Mock tests I wrote or wrote in conjunction with others:
Other posts I've made that are useful in some way:
  • How do I prepare for AIME?. An AIME-level "study guide" that basically intends to be an "AIME syllabus". First draft; hopefully will get around to version 2 at some point.
  • Response to: "Test day tips?". Quick link to number sense/computation tests, which I used throughout middle and high-school competitions to "wake up" on the mornings of.
  • Response to: "Power round solutions". BCA's solutions to the 2014 PUMaC Power Round, for which official solutions are not available.
  • "QEDMonthly Issue 2". The second edition of the (now defunct) QEDMonthly magazine, which I authored along with a few friends. I simply didn't have the time or inclination to continue with this project, but the existing material is still solid (and perhaps someday I'll revive the concept).
  • "Learn how to learn". Probably my most useful posts; describes how to efficiently practice (the focus is on MATHCOUNTS due to that being the question asked, but the post applies in a more general way).
  • "QEDMonthly Issue 1". The first edition of the (now defunct) QEDMonthly magazine, which I authored along with a few friends. I simply didn't have the time or inclination to continue with this project, but the existing material is still solid (and perhaps someday I'll revive the concept).
  • Response to: "CD strategies". Advice on performing well at MATHCOUNTS countdown.
  • MATHCOUNTS Tips. A few general tips for MATHCOUNTS, many of which scale to other competitions as well.

Other posts I'm saving for ease of reference, in order to reply to FAQs more quickly (these are more meta-oriented posts than posts that are useful for competitions):
Mock competitions by other users (not necessarily in chronological order; I just added high-quality ones as I came across them). Note that this is a very small sampling of mock tests out there; I chose the ones that I was impressed by:
  • 2015 Mock AIME I. Written by Binomial-Theorem and djmathman, well known for creating very high quality contests.
  • Mock MATHCOUNTS competition. Written by Th3Numb3rThr33, Benq, donot, AKAL3, and RadioActive. I'd definitely call this closer to state than chapter, but this is one of the few remarkably high quality mock MATHCOUNTS tests.
  • Crowd-sourced mock MATHCOUNTS. Written by the community at large. This isn't included here so much because of the final result, which I will freely admit I'm not entirely thrilled with (most mock MATHCOUNTS tests tend to be way overboard on difficulty, and this one falls victim to the same issue), but for the rather novel concept: crowd-sourcing a mock competition. This seems like an idea that, with proper development, has a lot of potential.
  • Mock AMC 10 2014-2015. Written by AlcumusGuy. The difficulty curve is a little wonky here, though less so than is usually for a mock test, but the problems are of quite high quality. Slightly harder than an AMC 10; could conceivably be rebranded as an AMC 12.
  • Triple Mock AIME. Written by mcdonalds106_7, Iggy Iguana, and fractals. These are way more difficult than you should expect from the actual AIME, which makes it good preparation for those already looking at 10+ scores. If you're not there yet, though, there are more difficulty-appropriate ones you should look at first.
  • Northeastern WOOTers Mock AIME I and II. First one written by codyj, djmathman, and yugrey, second written by ABCDE and codyj; both organized by ahaanomegas.
  • MWMT. Operated by MSTang. This has been of excellent quality in the past, and a new "season" is about to start. Definitely well-worth checking out.
  • (Not a post, but useful anyway) In the same vein, CleverMath is a relative newcomer to the math scene, but it seems like an excellent resource that's well worth getting used to doing. Unfortunately you'll have to start off in the lowest division, so there'll be a few weeks of cleaning up some easier problems, but the weekly set of fairly high-quality problems is worth it.

Useful general posts from other users (again, not necessarily in chronological order):
  • Response to: "Silly mistakes" (by v_Enhance). A great look at how a top mathlete handles a contest, and addresses the question of avoiding silly mistakes in the process.
  • How do I prepare for the AMCs? (by AkshajK). Not the greatest article ever (especially in terms of formatting and ordering of content), but still an excellent one-stop resource if you're not sure what to do next.
  • Stop looking for the "right" training (by v_Enhance). The above post is a good collection of resources, but don't forget the main point of this post: what you do is far less important than how you're doing it.
  • Response to: "USA(J)MO index" (by MSTang). A useful flowchart of the USA(J)MO qualification rules. This post, along with the below one, should answer most of the qualification questions around AMC season.
  • Response to: "MOP Qualification" (by Wolstenholme). A quick explanation of how the MOP cutoff rules work. This post, along with the above one, should answer most of the qualification questions around AMC season.
  • Response to: "Favorite Problem(s)?" (by v_Enhance). An excellent explanation of what makes a good problem a good problem (though of course there is room for subjectivity). Especially excellent reading for aspiring problem-writers.

Useful math posts from other users (again, not necessarily chronological):
  • Olympiad Combinatorics book (by Pascal96). This is very much a work in progress (and unfortunately appears to have been largely abandoned), but the existing content is excellent and this is a resource not enough people are aware of.
  • Not a post, but everything on v_Enhance's website is incredible material for olympiad-level preparation, as well as understanding how advanced mathletes think about and approach problems in general. His blog also contains a lot of mini-articles (though many are quite advanced) that are worth reading even if you don't 100% understand what's going on.
  • Barycentric coordinates in Olympiad geometry (by Mewto55555 and v_Enhance). This is on the above website, but is significant enough to mention twice. You can thank this post for the sharp uptake of geometry difficulty, as well as the cult following it's attracted. Almost mandatory reading at these for olympiad-level participants.
  • Cyclotomic Polynomials in Olympiad Number Theory (by dinoboy). Another great Olympiad-level article with a lot of applications, including several connections that are definitely not immediately obvious.
  • Olympiad number theory through challenging problems (by Binomial-Theorem). An excellent introduction into the basics of Olympiad number theory. Unfortunately this is slightly dated now as Olympiad number theory seems to have largely died off, but this is still excellent reading for you AIME/JMO-level people.
  • One hundred geometry problems - bridging the olympiad gap (by djmathman). In today's contest climate, one of the major downsides to geometry is that it's geometry. Another, albeit far less important, issue is that there exist few resources for "mid-level" geometry. This article helps bridge that gap through a well-selected set of problems.
  • Response to: "AIME level geometry book" (by v_Enhance). A quick syllabus of AIME-level geometry, to complement the above problem set.
  • AIME level practice problem set (by djmathman). A nice collection of 40 problems (10 per subject) from AIME-level competitions not named AIME. Definitely worth doing when you "run out" of AIME problems and/or want a different flavor.

Please don't take offense if you think you made a particularly useful post that didn't appear here; more than likely, I'm simply not familiar with the post and didn't think to include it here. If you know of (or authored) a post that you think deserves to be in this compilation, let me know and I'll consider adding it in. Also, if any of the factual information above (authorship etc.) is in error, let me know and I'll correct it ASAP.
This post has been edited 1 time. Last edited by BOGTRO, Jun 6, 2015, 9:31 AM

A new dawn

by BOGTRO, Jun 2, 2015, 8:33 AM

As the more astute among you will notice, this is my new blog. The reason for this is quite simple: after the site migration, I discovered that post-specific permissions were no longer possible, and I left my old blog private as a result.

I'm not entirely sure what I hope to use this blog for, as its creation very nearly coincides with the end of my high school career. As some of you know, I'll be headed to MIT in an amount of time that can effectively be described as "momentarily", so perhaps I'll stick to my original intentions of talking about that a lot. Mostly, however, I don't feel like I'm quite ready to leave the world of competitive mathematics just yet, and this blog provides a connection - however indirect and tenuous - to that culture. Really this will probably just be a place to toss out some stream-of-consciousness stuff when I feel somewhat emotional or unusually productive.

Of course, my connection to math competitions is one that will never really be broken. It's impossible to simply distance oneself from something that they've been pursuing for over a decade, and it's simply impractical to try. Regardless of what happens from here, my time within the realm of AoPS will forever shape my future. Nor will I become detached from this site in the future; my role is simply shifting from enthusiastic participant to wizened old TA. I should digress here for a moment: the last few months working with AoPS have been some of the most rewarding of my mathematics career. I get to see - and directly interact with - hundreds of kids who, quite literally, are the future of mathematics. In a class I'm TAing now, the instructor mentioned that he remembered me from a class he taught here around 8-9 years ago . It's extremely humbling and gratifying to realize that, somewhere down the road, I may very well recognize names from classes I helped assist.

Along those lines, I was fortunate to briefly speak with some of the top middle schoolers at ARML this weekend. Of course, they were more concerned with insisting they were fat and seeing who could wrap their hands around their legs, but the scene took me back - if only for a brief moment - to my glory days of MATHCOUNTS et al, when my primary concerns were less about major life decisions and more about who was fatter (sidebar: why is "fat" such a universal term in the math competition sphere?). I left (or, more accurately, they ran off to "Chipotle") without a very good idea of what exactly room 604 meant, but their sheer enthusiasm reminded me of what I'm leaving behind.

Another conversation I had this weekend was, basically, me nodding a lot while I was treated to a primer on investment banking. It's not a field I have much interest in, but that same enthusiasm that I experienced in the fatness debates made it impossible not to be interested. At the same time, it reminded me of how different things had become: instead of trying to sneak a pizza around and talking about AMCs, here we were - quite literally - talking about our careers. Growing up is terrifying.

Anyway, enough of me complaining about biological processes - on to ARML. As the final math competition of my life (Putnam exists, but to be totally honest I'm not that enthusiastic about it), I really cared about the results and put a serious effort into preparation. This seemed to be rather unusual among my friend circle, who were probably correct in focusing on more important matters, but I wanted to go out - for lack of a better term - with a bang. Unfortunately, we failed in my main goal of reaching the top 10 - a feat we've accomplished just once in recent memory - largely due to lackluster performances on the team and individual rounds. This was largely due to a completely failed strategy on the former of those two, in which our stronger members focused exclusively on the later questions, and failed to produce a positive number of points. In particular, 2 of our 4 strongest spent the entire round failing to solve #10, and I blew both #8 and #9 (apparently $x^4=0$ doesn't actually have two solutions despite the discriminant being 0, and I never really got close on #9). Somehow we ended up failing both #6 and #7 as well, despite many checks, and ended up with a truly... well, pathetic 5/10.

Power went much better; I personally did all of #6 and #7. However, we didn't end up getting most of #8, and we discovered afterwards that we had fakesolved #5. This left us with a 37, which wasn't too bad but well below what we needed to make up the team round. Individuals were rather demoralizing from the start, as we had just 19/30 on the first pair and little improvement from there. It almost seemed like we were making a comeback on the relay round (!!!) with our 21/25 on the first portion, but we were quickly returned to our ground state with just 3/25 on the next one (in which I didn't believe $-\frac{\sqrt{2191}}{32}$ could actually be an answer to an ARML relay, didn't check my computation carefully, and realized just before the 6-minute mark that it was in fact $-\frac{\sqrt{2121}}{32}$). This echoed #6 on the individual round, in which I didn't really believe that $\frac{27}{160}$ could be right because it was a pretty random number, but I wrote it anyway with ~15 seconds left (which I also did on #9 due to thinking $a,r,m,l$ were the side lengths in that order and not catching that until ~15 seconds left). Also, highly amusingly, one of our #2s passed back the sum of the side lengths of a rectangle instead of the perimeter (a common mistake on that relay), thus accidentally halving the answer. Fortunately for us, yugrey accidentally calculated the area of a triangle as $\text{base} \times \text{height}$, thus effectively doubling the passed answer. Give those men some medals.

Somehow we managed to finish as high as 14th, but it was quite a disappointing result nonetheless. On the bright side, I made it to tiebreakers for the first time - something that I had figured was so improbable that I didn't bother setting it as a personal goal. I also didn't realize they called my name for a while due to applause from other members obfuscating the sound, so that was mildly awkward as well. Even more awkward, however, was my brief conversation with nsun48, in which I legitimately thought he was ksun48 until sitting down for the problem. Oops. Anyway, as soon as I read the problem I figured that ARML was trying to be tricky and $a$ would be negative, which basically solved the problem as the entire point was remember that $a$ could be negative. However, I misremembered $7^3$ as $243$ (which is another perfect power - $3^5$ - so I get them confused), and then paniced when I realized $(2,11)$ might be the answer, but then I realized $7^3$ is definitely not 243 and correctly submitted at something like 1:55.

Evidently that was fast enough to break into the top 20, though not fast enough to match Wolstenholme's 16 seconds, which was an extremely satisfying end to a very long (this was my 9th ARML) math career. I actually don't think we've had a top individual in recent memory (at least not within the last 10 years), despite having many tiebreaker participants, so - finally - those endless hours of speed-training FTW paid off :D

And so, for me at least, the end of an era has arrived. My final year was certainly a rousing success by most measures (top individual performances at PUMaC [which included 2nd place team], ARML, top ~50 USAMO, etc.), so my swan song was - quite fortunately - a successful one. At the same time, however, the close of this chapter leaves a large gaping void in my life, one not dissimilar to loss. I, for one, am quite interested in seeing what shows up to fill it.

In other news, I recently came out of pseudo-retirement in chess, having an incredible result at the Philadelphia Open to pick up a ton of rating points (and an unofficial IM norm in the process, just short of a GM one). A couple more solid performances later, and now I'm sporting an absurdly high 2456 rating. Certainly this is not something I had expected by any stretch of the imagination - it wasn't that long ago that I was floating over and under 2400 - but now it seems that I might be obligated to pursue a quest to GM once more. Two tournaments at the end of this month (and the beginning of next), the DC international and the World Open, will provide excellent barometers for me to see if I'm the beneficiary of an auspiciously-timed fluke, or if there's something deeper lurking. Could it really be that I'm not the worst IM in the world?
This post has been edited 1 time. Last edited by BOGTRO, Jun 2, 2015, 8:34 AM

The blog where... well, I speak

avatar

BOGTRO
Shouts
Submit
  • 1st shout in 2025

    by Pengu14, Mar 29, 2025, 5:17 PM

  • rip $          $

    by gamma_pi, Nov 4, 2024, 6:35 PM

  • 1st shout in 2024

    by EpicSkills32, May 18, 2024, 4:55 AM

  • Bro decides to post on a 8 year old post :skull:

    by cjdiamond9, Sep 12, 2023, 6:51 PM

  • bogtro is back no way

    by aidan0626, Aug 8, 2023, 10:37 PM

  • wait did you go to bca

    by tienxion, Jul 28, 2023, 3:52 AM

  • BOGTRO? more like BOGPRO

    by the_mathmagician, May 20, 2023, 10:13 PM

  • OMGGGG W MAN

    by Tiny123, Apr 2, 2023, 5:45 AM

  • BOGTRO'S BACK????

    by TethysTide, Mar 4, 2023, 1:31 AM

  • the prodigal son returns

    by BOGTRO, Mar 2, 2023, 9:10 AM

  • Bogtro OP

    by Alex-131, Oct 20, 2022, 4:06 PM

  • bogtro $$ $$

    by Math4Life7, Oct 7, 2022, 3:57 PM

  • bogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobogtrobog

    by michaelwenquan, Aug 23, 2022, 6:07 PM

  • :omighty:

    by Cygnet, Jun 30, 2022, 4:16 AM

  • blogg = = = = = = =dead

    by footballmaster, Jun 1, 2022, 1:24 AM

80 shouts
Tags
About Owner
  • Posts: 5818
  • Joined: Jun 29, 2006
Blog Stats
  • Blog created: Jun 2, 2015
  • Total entries: 8
  • Total visits: 22498
  • Total comments: 49
Search Blog
a