🌌 About Me
I’m an IIT Delhi alumnus (MSc Mathematics) with a deep passion for Analysis, Number Theory, and Algebra. I love the intersection where mathematical rigor meets practical software engineering.
Currently, I’m building innovative applications with Jetpack Compose, crafting C++ 3D simulations, developing intelligent Telegram/WhatsApp bots, and integrating Gemini AI into real-world solutions.
Beyond code, I’m the author of “Silhouette of Words” — a literary work blending philosophy with logic, exploring emotional nuances in both English and Bengali poetry.
Highlights
- 🎓 Academic Excellence — MSc Mathematics from IIT Delhi
- 💻 Full-Stack Development — Mobile apps to backend systems
- ✍️ Creative Writing — Author & bilingual poet
- 👨🏫 Teaching — Making complex math intuitive
Favorite Equations
-
$\int_{-\infty}^{\infty} e^{-x^2} \, dx = \sqrt{\pi}$
-
$e^{i\pi} + 1 = 0$
-
$\sum_{n=1}^{\infty} \frac{1}{n^2} = \frac{\pi^2}{6}$
Sample Code (Python)
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)