7

I'm starting my last year of high school, and I will have to do an all year research on a mathematical topic.

I'm a really passionate learner and I'm very involved in computer science. I am stuck on finding an idea that will both be challenging and fun. I would also really love to integrate computer science in it, since that's what I want to study afterwards.

Thank you in advance.

  • 4
    Since you are interested in computer science you might want to look at something in the field of numerical analysis. – Gahawar Aug 09 '14 at 23:58
  • 2
    I suggest a combinatorial optimization problem somehow related to your real-world environment: scheduling of classes, or something fun. –  Aug 10 '14 at 01:45
  • 1
    I would recommend graph theory and applications thereof. Or, something with cryptography and encryption. It really depends on your interests. – apnorton Aug 10 '14 at 04:00
  • 1
    I realize this isn't a duplicate, but I recommend looking here: http://math.stackexchange.com/questions/160013/high-school-mathematical-research. Note that this former question was accepted by the community, even though it (too) could be called primarily opinion based. I recommend that we leave this question open, as it could bring some useful answers. (Even if it's not a suitable fit for SE by the "letter of the law.") – apnorton Aug 10 '14 at 04:02
  • How much math have you learned so far? Much of computer science is math, so you could potentially choose a CS topic and convince your teacher it counts as math. This is a stretch for a "math" topic, but one awesome project is to work through the book The Elements of Computing Systems by Nisan and Schocken, making a computer that can play a game like Tetris from scratch (starting with Nand gates). – littleO Aug 13 '14 at 02:04

3 Answers3

3

Here's a random idea that I've thought about. In my town, I get stuck at red lights all the time. It's pretty frustrating. I know there's people whose job it is to figure out how to run the lights, but I always wonder if there's a way to do it better. What if, as a project, you took a small section of your city (maybe downtown) and tried to work out a timing of the lights so that no driver would ever get caught at more than one red light as long as they stayed on the same street? That is, as long as a car keeps going straight down the same road, they would get caught at (at most) one red light. You might be able to use some programming to run simulations, and linear algebra would likely be useful if you studied it. It's an ambitious project, but it might be an interesting one.

Steve
  • 143
0

I think a cool project would be to implement linear algebra in the computer, say for example vector spaces of n-tuples over the rational numbers. You would have to first implement tuples and matrices, then the gaussian reduction algorithm, and then you can implement vector spaces $\Bbb Q^n$, subspaces, perhaps linear maps (unless you identify them with matrices), and operations such as intersection of subspaces, image and kernel of a matrix or linear map, etc.

The reason I suggest linear algebra is because it is a good start if you later on want to continue learning mathematics, and will get you in contact with some fundamental concepts that appear all over mathematics.

Another cool project would be programming the residue class rings $\Bbb Z/m\Bbb Z$. For example $\Bbb Z/6\Bbb Z$ is the set of elements $\{0,1,2,3,4,5\}$ with addition and multiplication performed modulo 6. These objects are finite, and thus allow you to construct small examples and perform experiments. For example you might want to count how many elements $x \in \Bbb Z/m\Bbb Z$ are squares (i.e., exists $y$ with $x=y^2$), and see this for all $m<100$, and maybe find a pattern and guess a formula. You would have to program the elements (represented by an integer between 0 and $m-1$) and their arithmetic operations, and the rings $\Bbb Z/m\Bbb Z$ themselves, then you can program some algorithms, for example the extended Euclidean algorithm for computing multiplicative inverses and solving congruences, etc.

len
  • 133
0

I myself love to integrate mathematics and computer science. Mathematical programming involves lot of mathematics and computer. That can be done in higher education in computer applications and courses on computer programming.