Manu Jayadharan

Recent Research: Stable Equation Discovery, Electrochemical Solvers, and Agentic AI for Scientific Computing

My research program centers on stable algorithms for forward and inverse scientific computing problems. Across everything I work on, three commitments stay constant: stability (algorithms that do not silently fail under noise, discretization, or optimization choices), interpretability (models scientists can reason about: sparse, symbolic, mechanism-level), and usability (methods released as well-tested open-source software). Here is an overview of what I have been working on at Northwestern.

read more

Approximations and Use of Mathematical Models in Finance: Options Trading with the Help of Greeks

Introduction

In this post, I will discuss the pros and cons of financial modeling, specifically in the case of stock option pricing. I will talk about why financial models are imperfect and less predictive compared to models derived from physical laws. I will provide the definition and usage of Greeks from the perspective of a mathematician and share my thoughts on their application.

I have made several simplifications of concepts in this post to make the reading short and comprehensive. I am also talking about modelling of financial instruments and not algorithmic trading which is a different topic.

This post is inspired by a similar post I wrote on Reddit on a related topic. This post can be found here.

Stock Picture

What are Options ? Can we model them perfectly ?

Since stock options are the most common type of options (at least from the perspective of mere mortals, aka retail traders like us), I will focus on discussing these options for the remainder of this discussion.

read more

FluidLearn: Solving Fluid Flow PDEs with Physics-Informed Neural Networks

FluidLearn is a software package with python interface, capable of solving non-linear fluid flow problems using supervised deep learning techniques. The solution function and the PDE operator are approximated as neural networks, which will be trained using labelled data.

Conceptually, this API could be used to solve any well-posed PDE system on complex geometric structures, given enough labelled data in the form of boundary and initial conditions. The architecture could also be used for physical parameter estimation and surrogate modelling. As of now, the package is oriented towards PDE systems governing fluid flow problems with many popular flow systems inbuilt. Users have the option to train the model from external data, visualize the training curves, save the model, reload the model, continue training the saved model or make predictions from the saved models.

The package could be seen as an application of the Physics Informed Neural Networks (PINNs) which are artificial neural nets trained with PDE constraints. The idea was first introduced in this publication in 2017. For more details on the mathematical theory behind PINNs, please visit the website maintained by the authors of the aforementioned publication here.
A graphical representation of a feed forward type neural net used in the training is shown below.

read more

MMMFE-ST-DD: A Parallel Fluid Flow Simulator Using Space-Time Domain Decomposition

Fluid flow simulator using multiscale space-time domains.

Full repository can be found here.

Code developed to simulate time-dependent diffusion problem using Multiscale Mortar Mixed Finite Elements(MMMFE). Model can be easily adapted to simulate other fluid flow models based on linear PDEs. The novelty of the simulator lies in using multiple subdomains with variable time steps and mesh size for each subdomain. This give rise to a space-time DD technique allowing non-matching grids for sub-domains in both space and time dimensions. Sub-domain solves are done in parallel across different processors using MPI. Computed solutions are outputted and visualized on a global space-time grid in the .vtk and .vtu formats. Details of the spaces used and rough algorithm can be found in report.pdf and algorithm.pdf respectively. Theoretical results guaranteeing convergence and stability of the problem along with a priori error estimates are proved and being published. github_space_time_dd

Note:

Author


Manu Jayadharan, Department of Mathematics at University of Pittsburgh 9/17/2019

email: manu.jayadharan@gmail.com, manu.jayadharan@pitt.edu
researchgate
linkedin

read more