things I've been thinking about... last updated Tues Dec 9th/2025
The biharmonic wave equation models the vibration of thin elastic plates via the fourth-order operator $\nabla^4$
We have the following weak formulation via the Finite Elements Method obtained by integrating by parts.
Discretize $u(x,y,t) \approx \sum_{i} U_i(t) N_i(x,y)$ with $C^1$-elements.
where $W_{ij} = \int N_i N_j \, dA$ and $K_{ij} = \int (\Delta N_i)(\Delta N_j) \, dA$
We use tensor product basis functions $N_{i,j}(x,y)=N_i(x)N_j(y)$ with piecewise-linear $N_i$ on a grid $\{x_i\}$:
Initial data: a localized displacement. With zero boundary conditions.
This research project implements methods for analyzing low-count gamma ray spectra. The primary objective behind this program was to establish precise signal bounds for calculating the half-life of specific tantalum isotope.
We were interested in the question - how many signal counts do we need to see to have a 5 $\sigma$ event? We answered this question by applying the tools of log-likelihood analysis.
The Poisson log-likelihood function is defined as:
$$\log L = \sum_{i} (n_i \log \lambda_i - \lambda_i - \log n_i!)$$Where $n_i$ represents observed counts and $\lambda_i$ represents the expected counts from our model.
The likelihood function tells us how likely a given set of fitting parameters are to generate the peaks we see. So, by enumerating parameter space, the log-likelihood analysis gives us a good way to determining the $5 \sigma$ bound.
In this program, we see:
This project involved the development of a precision control system for a Time Projection Chamber (TPC) used in dark matter detection experiments. The system was implemented as part of a scaled-down version of the DarkSide-20k at Gran Sasso National Laboratory.
The control system architecture consists of three primary components:
The controller maintains precise temperature and pressure conditions within the argon-filled TPC by regulating nitrogen gas outflow. This stability is critical for detecting scintillation photons produced by potential dark matter particle interactions.
This project implements an efficient algorithm for generating chemical isomers—structurally distinct molecules with identical chemical formulas. The computational approach leverages linear algebra to enumerate possible molecular configurations based on valence constraints.
The thermodynamic significance of isomers is captured by their Boltzmann probability distribution:
Where $G$ represents the Gibbs free energy, $k$ is Boltzmann's constant, and $T$ is temperature.
The algorithm translates Lewis-bonding rules into a system of linear equations, where each atom's valence requirements must be satisfied. This formulation transforms the chemical problem into a linear algebra problem:
Where $\vec{b}$ represents the vector of atomic valencies and $A$ is the bonding matrix encoding potential connections between atoms.
The implementation uses Mathematica's linear algebra routines to efficiently compute the solution space, with each valid solution corresponding to a unique isomer. This approach offers significant computational advantages over traditional graph-based enumeration methods, particularly for molecules with complex bonding patterns.
PiDoc is an integrated scientific document editor developed to streamline technical writing. The application implements a number of scientific tools within a unified interface, increasing the speed at which papers and homeworks can be written.
The architecture employs a modular design pattern that integrates multiple scientific computing functionalites, including:
This project develops a computational model for optimizing cross-country skiing technique selection based on course topography and athlete-specific parameters. The analysis utilizes official FIS (International Ski Federation) course data combined with a non-linear model of skiing mechanics.
The model incorporates multiple variables affecting skiing performance:
Race time prediction is accomplished through numerical integration of velocity as a function of course position:
Where $v(\theta)$ represents velocity as a function of slope angle $\theta$.
The model outputs technique transition points that optimize overall race time, providing strategic insights for athletes and coaches. This analytical approach has applications beyond Nordic skiing, including other racing sports with variable terrain and equipment configurations, such as Formula 1 racing where gear selection and racing line optimization follow similar mathematical principles.