de en es fr nl pl pt sv zh

math

Mathematical Notation to Python Mapping

eloycoto

I did not attend college, so I learned a lot of things on my own. I'm good at Math, but because I learned math using programming languages, the Math language is always something I need to read ten times to understand. This is a map model for me. Nowadays I'm reading a lot of math papers, and I...

Measuring Confidence

Blog

*, *::before, *::after { box-sizing: border-box; } img { box-shadow: 5px 5px 5px grey; border: 1px solid grey; display: block; margin: 30px auto 30px; max-width: calc(100% - 60px); } At the start of each year, Ron Minsky (from Jane Street) runs a...

Subtracting times

Blog

*, *::before, *::after { box-sizing: border-box; } img { box-shadow: 5px 5px 5px grey; border: 1px solid grey; display: block; margin: 30px auto 30px; max-width: calc(100% - 60px); } In my 7 year old’s math class, they’re learning about time. In...

Extending tetration to rational heights (a failed attempt)

Blog

*, *::before, *::after { box-sizing: border-box; } img { box-shadow: 5px 5px 5px grey; border: 1px solid grey; display: block; margin: 30px auto 30px; max-width: calc(100% - 60px); } .info { display:flex; align-items:center; border-radius: 5px; } This post is...

Let’s build an operator

Blog

*, *::before, *::after { box-sizing: border-box; } img { box-shadow: 5px 5px 5px grey; border: 1px solid grey; display: block; margin: 30px auto 30px; max-width: calc(100% - 60px); } .ex { width: 100%; max-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px;...

Guess the function

Blog

img { box-shadow: 5px 5px 5px grey; border: 1px solid grey; display: block; margin: 30px auto 30px; max-width: 100%; } Let’s play a game. I’m going to draw two points on an x-y plane and give you a rule which you can use to generate new points. You can generate as many new points as you...

Tupper's self-referential formula

Atul Vinayak

I saw this old tweet today Tupper's self-referential formula is a formula that visually represents itself when graphed at a specific location in the (x, y) plane. pic.twitter.com/R0L3ZjqcyP— Fermat's Library (@fermatslibrary) December 13, 2021 The equation here is not the full picture. The...

Two Percolation Puzzles

Adam Scherlis

Take a very large chessboard (NxN, where N is huge). Remove some fraction 1-p of the squares at random, leaving a fraction p of them. Can you place a queen on the first row and then, via some sequence of legal moves, get it to the last row? This is probabilistic, of course, but it turns...

Probability and Types

Lawrence Pan

Introduction In this blog post, I will explain the concept of a Random Variable from a software developer’s perspective. Definitions Before we dive in, I want to define a few terminologies, for those of you who are new to probability and statistics. Feel free to skip this section if you think...

Vote on which topic you want to see covered next!

1ucasvb's lab

I’m planning a few posts in the near future, but I’m wondering which topic interests people more. The topics I’m considering: Mirrors of different shapes: I’ll explore how rays and waves are reflected by different shapes, and some interesting properties of these shapes. I have more ideas beyond...

Matrix Sketching

Jeffrey Wang

Last time, I wrote about a clever algorithm for approximating the histogram for a stream using bounded memory. The post was motivated by this paper, which is an extension of that algorithm to a problem that seems unrelated at first glance, which is matrix sketching. The matrix sketching problem is...

Streaming Frequency Approximation

Jeffrey Wang

It's been a while, but I finally motivated myself to write another blog post! Today's topic is approximating the frequency of items in a stream. With all the data that is generated today, streaming algorithms have become very popular as one of the efficient ways to process datasets that are far...