Explore >> Select a destination


You are here

stephenmalina.com
| | xorshammer.com
4.8 parsecs away

Travel
| | There are a number of applications of logic to ordinary mathematics, with the most coming from (I believe) model theory. One of the easiest and most striking that I know is called Ax's Theorem. Ax's Theorem: For all polynomial functions $latex f\colon \mathbb{C}^n\to \mathbb{C}^n$, if $latex f$ is injective, then $latex f$ is surjective. Very...
| | nhigham.com
1.4 parsecs away

Travel
| | The trace of an $latex n\times n$ matrix is the sum of its diagonal elements: $latex \mathrm{trace}(A) = \sum_{i=1}^n a_{ii}$. The trace is linear, that is, $latex \mathrm{trace}(A+B) = \mathrm{trace}(A) + \mathrm{trace}(B)$, and $latex \mathrm{trace}(A) = \mathrm{trace}(A^T)$. A key fact is that the trace is also the sum of the eigenvalues. The proof is by...
| | www.jeremykun.com
1.6 parsecs away

Travel
| | For fixed integers $ r > 0$, and odd $ g$, a Moore graph is an $ r$-regular graph of girth $ g$ which has the minimum number of vertices $ n$ among all such graphs with the same regularity and girth. (Recall, A the girth of a graph is the length of its shortest cycle, and it's regular if all its vertices have the same degree) Problem (Hoffman-Singleton): Find a useful constraint on the relationship between $ n$ and $ r$ for Moore graphs of girth $ 5$ and degree $ r$.
| | sitr.us
22.5 parsecs away

Travel
| Dependent types provide an unprecedented level of type safety. A quick example is a type-safe printf implementation. They are also useful for theorem proving. According to the Curry-Howard correspondence, mathematical propositions can be represented in a program as types. An implementation that satisfies a given type serves as a proof of the corresponding proposition. In other words, inhabited types represent true propositions.