nhorozov.xyz/aboutme/mathematics
mathematics
- During the pandemic I worked on a paper about the distribution of Gaussian primes and more generally primes in quadratic number fields, working alongside my father and his student. I wrote several Python programs to find the number of primes in angular slices of the complex plane and compare their densities. We found that our results very closely match and support the conjectures we sought to prove, like the idea that two slices with the same angle and radius will have similar amounts of primes as the radius goes to infinity.
- I am currently taking AP Calculus BC and teaching myself some statistics so I can better crystallize my intuition about LLMs
- I often learn math in the context of computer science so many of my
programs are math heavy Heres a list of some of the more math heavy
ones:
- Mandelbrot set plotter in p5js
- Strange
attractor ploters in p5js, plots the trajectory of a particle in a
space and has some really cool properties. If you slightly alter the
initial conditions of the program the particle will trace out a very
different path. Also (ideally) the path of the particle is not
self-intersecting. (However it is imposible for a descrete
computer running forever to not have the particle self-intersect its
previous path, because there are a finite number of positions it can be
in).
- Word2vec implementation, uses machine learning to quantify the meanings of words they take on in a corpus of text. (from 8th grade, updated recently (Dec 8, 25) to fix dependency versions)