import plotly.express as px
import plotly.io as pio
pio.renderers.default = "notebook"
url = "https://raw.githubusercontent.com/plotly/datasets/master/2011_us_ag_exports.csv"
import pandas as pd
df = pd.read_csv(url)
df.head(5)
code | state | category | total exports | beef | pork | poultry | dairy | fruits fresh | fruits proc | total fruits | veggies fresh | veggies proc | total veggies | corn | wheat | cotton | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | AL | Alabama | state | 1390.63 | 34.4 | 10.6 | 481.0 | 4.06 | 8.0 | 17.1 | 25.11 | 5.5 | 8.9 | 14.33 | 34.9 | 70.0 | 317.61 |
1 | AK | Alaska | state | 13.31 | 0.2 | 0.1 | 0.0 | 0.19 | 0.0 | 0.0 | 0.00 | 0.6 | 1.0 | 1.56 | 0.0 | 0.0 | 0.00 |
2 | AZ | Arizona | state | 1463.17 | 71.3 | 17.9 | 0.0 | 105.48 | 19.3 | 41.0 | 60.27 | 147.5 | 239.4 | 386.91 | 7.3 | 48.7 | 423.95 |
3 | AR | Arkansas | state | 3586.02 | 53.2 | 29.4 | 562.9 | 3.53 | 2.2 | 4.7 | 6.88 | 4.4 | 7.1 | 11.45 | 69.5 | 114.5 | 665.44 |
4 | CA | California | state | 16472.88 | 228.7 | 11.1 | 225.4 | 929.95 | 2791.8 | 5944.6 | 8736.40 | 803.2 | 1303.5 | 2106.79 | 34.6 | 249.3 | 1064.95 |
df['exports_coton'] = df['cotton'] > 0
df.head(5)
code | state | category | total exports | beef | pork | poultry | dairy | fruits fresh | fruits proc | total fruits | veggies fresh | veggies proc | total veggies | corn | wheat | cotton | exports_coton | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | AL | Alabama | state | 1390.63 | 34.4 | 10.6 | 481.0 | 4.06 | 8.0 | 17.1 | 25.11 | 5.5 | 8.9 | 14.33 | 34.9 | 70.0 | 317.61 | True |
1 | AK | Alaska | state | 13.31 | 0.2 | 0.1 | 0.0 | 0.19 | 0.0 | 0.0 | 0.00 | 0.6 | 1.0 | 1.56 | 0.0 | 0.0 | 0.00 | False |
2 | AZ | Arizona | state | 1463.17 | 71.3 | 17.9 | 0.0 | 105.48 | 19.3 | 41.0 | 60.27 | 147.5 | 239.4 | 386.91 | 7.3 | 48.7 | 423.95 | True |
3 | AR | Arkansas | state | 3586.02 | 53.2 | 29.4 | 562.9 | 3.53 | 2.2 | 4.7 | 6.88 | 4.4 | 7.1 | 11.45 | 69.5 | 114.5 | 665.44 | True |
4 | CA | California | state | 16472.88 | 228.7 | 11.1 | 225.4 | 929.95 | 2791.8 | 5944.6 | 8736.40 | 803.2 | 1303.5 | 2106.79 | 34.6 | 249.3 | 1064.95 | True |
fig = px.choropleth(df,
locationmode="USA-states",
locations="code",
scope="usa",
color="exports_coton",
title="States exporting cotton",
color_discrete_sequence = ["red", "lightgray"],
hover_name="state",
hover_data={"exports_coton": False, "code": False}
)
fig.update_layout(showlegend=False)
fig.show()
df["veggie_perc"] = (df["total veggies"]/df["total exports"])*100
df.head(5)
code | state | category | total exports | beef | pork | poultry | dairy | fruits fresh | fruits proc | total fruits | veggies fresh | veggies proc | total veggies | corn | wheat | cotton | exports_coton | veggie_perc | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | AL | Alabama | state | 1390.63 | 34.4 | 10.6 | 481.0 | 4.06 | 8.0 | 17.1 | 25.11 | 5.5 | 8.9 | 14.33 | 34.9 | 70.0 | 317.61 | True | 1.030468 |
1 | AK | Alaska | state | 13.31 | 0.2 | 0.1 | 0.0 | 0.19 | 0.0 | 0.0 | 0.00 | 0.6 | 1.0 | 1.56 | 0.0 | 0.0 | 0.00 | False | 11.720511 |
2 | AZ | Arizona | state | 1463.17 | 71.3 | 17.9 | 0.0 | 105.48 | 19.3 | 41.0 | 60.27 | 147.5 | 239.4 | 386.91 | 7.3 | 48.7 | 423.95 | True | 26.443270 |
3 | AR | Arkansas | state | 3586.02 | 53.2 | 29.4 | 562.9 | 3.53 | 2.2 | 4.7 | 6.88 | 4.4 | 7.1 | 11.45 | 69.5 | 114.5 | 665.44 | True | 0.319295 |
4 | CA | California | state | 16472.88 | 228.7 | 11.1 | 225.4 | 929.95 | 2791.8 | 5944.6 | 8736.40 | 803.2 | 1303.5 | 2106.79 | 34.6 | 249.3 | 1064.95 | True | 12.789445 |
fig = px.choropleth(df,
locationmode="USA-states",
scope="usa",
locations="code",
color="veggie_perc",
color_continuous_scale='tempo',
hover_name="state",
hover_data={"code": False, "veggie_perc": ':.2f'},
title="Percange of vegetable in agricultural exports",
labels={"veggie_perc": "veggies %"}
)
fig.show()
dir(px.colors.sequential)
['Aggrnyl', 'Aggrnyl_r', 'Agsunset', 'Agsunset_r', 'Blackbody', 'Blackbody_r', 'Bluered', 'Bluered_r', 'Blues', 'Blues_r', 'Blugrn', 'Blugrn_r', 'Bluyl', 'Bluyl_r', 'Brwnyl', 'Brwnyl_r', 'BuGn', 'BuGn_r', 'BuPu', 'BuPu_r', 'Burg', 'Burg_r', 'Burgyl', 'Burgyl_r', 'Cividis', 'Cividis_r', 'Darkmint', 'Darkmint_r', 'Electric', 'Electric_r', 'Emrld', 'Emrld_r', 'GnBu', 'GnBu_r', 'Greens', 'Greens_r', 'Greys', 'Greys_r', 'Hot', 'Hot_r', 'Inferno', 'Inferno_r', 'Jet', 'Jet_r', 'Magenta', 'Magenta_r', 'Magma', 'Magma_r', 'Mint', 'Mint_r', 'OrRd', 'OrRd_r', 'Oranges', 'Oranges_r', 'Oryel', 'Oryel_r', 'Peach', 'Peach_r', 'Pinkyl', 'Pinkyl_r', 'Plasma', 'Plasma_r', 'Plotly3', 'Plotly3_r', 'PuBu', 'PuBuGn', 'PuBuGn_r', 'PuBu_r', 'PuRd', 'PuRd_r', 'Purp', 'Purp_r', 'Purples', 'Purples_r', 'Purpor', 'Purpor_r', 'Rainbow', 'Rainbow_r', 'RdBu', 'RdBu_r', 'RdPu', 'RdPu_r', 'Redor', 'Redor_r', 'Reds', 'Reds_r', 'Sunset', 'Sunset_r', 'Sunsetdark', 'Sunsetdark_r', 'Teal', 'Teal_r', 'Tealgrn', 'Tealgrn_r', 'Turbo', 'Turbo_r', 'Viridis', 'Viridis_r', 'YlGn', 'YlGnBu', 'YlGnBu_r', 'YlGn_r', 'YlOrBr', 'YlOrBr_r', 'YlOrRd', 'YlOrRd_r', '__all__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', '_cols', '_contents', '_k', '_swatches', '_swatches_continuous', 'algae', 'algae_r', 'amp', 'amp_r', 'deep', 'deep_r', 'dense', 'dense_r', 'gray', 'gray_r', 'haline', 'haline_r', 'ice', 'ice_r', 'matter', 'matter_r', 'solar', 'solar_r', 'speed', 'speed_r', 'swatches', 'swatches_continuous', 'tempo', 'tempo_r', 'thermal', 'thermal_r', 'turbid', 'turbid_r']
import requests
r = requests.get("https://mth548.org")
r.status_code
200
r.headers
{'Connection': 'keep-alive', 'Content-Length': '5720', 'Server': 'GitHub.com', 'Content-Type': 'text/html; charset=utf-8', 'Last-Modified': 'Mon, 14 Mar 2022 04:48:06 GMT', 'Access-Control-Allow-Origin': '*', 'ETag': 'W/"622ec906-47c3"', 'expires': 'Mon, 14 Mar 2022 16:18:51 GMT', 'Cache-Control': 'max-age=600', 'Content-Encoding': 'gzip', 'x-proxy-cache': 'MISS', 'X-GitHub-Request-Id': '558E:3767:1056:1C8E:622F6893', 'Accept-Ranges': 'bytes', 'Date': 'Mon, 14 Mar 2022 16:57:52 GMT', 'Via': '1.1 varnish', 'Age': '38', 'X-Served-By': 'cache-lga21936-LGA', 'X-Cache': 'HIT', 'X-Cache-Hits': '2', 'X-Timer': 'S1647277072.030969,VS0,VE0', 'Vary': 'Accept-Encoding', 'X-Fastly-Request-ID': '9a480e34b03c553fb81bcdc1674fa05c38ffbc55'}
dict(r.headers)
{'Connection': 'keep-alive', 'Content-Length': '5720', 'Server': 'GitHub.com', 'Content-Type': 'text/html; charset=utf-8', 'Last-Modified': 'Mon, 14 Mar 2022 04:48:06 GMT', 'Access-Control-Allow-Origin': '*', 'ETag': 'W/"622ec906-47c3"', 'expires': 'Mon, 14 Mar 2022 16:18:51 GMT', 'Cache-Control': 'max-age=600', 'Content-Encoding': 'gzip', 'x-proxy-cache': 'MISS', 'X-GitHub-Request-Id': '558E:3767:1056:1C8E:622F6893', 'Accept-Ranges': 'bytes', 'Date': 'Mon, 14 Mar 2022 16:57:52 GMT', 'Via': '1.1 varnish', 'Age': '38', 'X-Served-By': 'cache-lga21936-LGA', 'X-Cache': 'HIT', 'X-Cache-Hits': '2', 'X-Timer': 'S1647277072.030969,VS0,VE0', 'Vary': 'Accept-Encoding', 'X-Fastly-Request-ID': '9a480e34b03c553fb81bcdc1674fa05c38ffbc55'}
print(r.text)
<!DOCTYPE html> <html class="writer-html5" lang="en" > <head> <meta charset="utf-8" /> <meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>MTH 448/548 Syllabus — MTH 448/548 documentation</title> <link rel="stylesheet" href="_static/css/theme.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <link rel="stylesheet" href="_static/css/theme.css" type="text/css" /> <link rel="stylesheet" href="_static/copybutton.css" type="text/css" /> <link rel="stylesheet" href="_static/css/custom.css" type="text/css" /> <link rel="shortcut icon" href="_static/favicon.ico"/> <link rel="canonical" href="https://www.mth548.org/index.html" /> <!--[if lt IE 9]> <script src="_static/js/html5shiv.min.js"></script> <![endif]--> <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> <script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script> <script src="_static/jquery.js"></script> <script src="_static/underscore.js"></script> <script src="_static/doctools.js"></script> <script src="_static/clipboard.min.js"></script> <script src="_static/copybutton.js"></script> <script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script> <script type="text/javascript" src="_static/js/theme.js"></script> <link rel="index" title="Index" href="genindex.html" /> <link rel="search" title="Search" href="search.html" /> <link rel="next" title="Current Tasks" href="to_do.html" /> <link rel="prev" title="MTH 448/548 Data Oriented Computing" href="master.html" /> </head> <body class="wy-body-for-nav"> <div class="wy-grid-for-nav"> <nav data-toggle="wy-nav-shift" class="wy-nav-side"> <div class="wy-side-scroll"> <div class="wy-side-nav-search" > <a href="master.html" class="icon icon-home"> MTH 448/548 </a> <div role="search"> <form id="rtd-search-form" class="wy-form" action="search.html" method="get"> <input type="text" name="q" placeholder="Search docs" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> </div> <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation"> <p class="caption" role="heading"><span class="caption-text">Logistics</span></p> <ul class="current"> <li class="toctree-l1 current"><a class="current reference internal" href="#">MTH 448/548 Syllabus</a><ul> <li class="toctree-l2"><a class="reference internal" href="#class-meetings">Class meetings</a></li> <li class="toctree-l2"><a class="reference internal" href="#instructor">Instructor</a></li> <li class="toctree-l2"><a class="reference internal" href="#prerequisites">Prerequisites</a></li> <li class="toctree-l2"><a class="reference internal" href="#learning-outcomes">Learning Outcomes</a></li> <li class="toctree-l2"><a class="reference internal" href="#course-resources">Course Resources</a></li> <li class="toctree-l2"><a class="reference internal" href="#grading">Grading</a><ul> <li class="toctree-l3"><a class="reference internal" href="#project-reports">Project Reports</a></li> <li class="toctree-l3"><a class="reference internal" href="#weekly-digests">Weekly digests</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="#incomplete-grades">Incomplete Grades</a></li> <li class="toctree-l2"><a class="reference internal" href="#academic-integrity">Academic Integrity</a></li> <li class="toctree-l2"><a class="reference internal" href="#accessibility-resources">Accessibility Resources</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="to_do.html">Current Tasks</a></li> <li class="toctree-l1"><a class="reference internal" href="report_guide.html">Project Report Guide</a></li> <li class="toctree-l1"><a class="reference internal" href="useful_links.html">Useful links</a></li> </ul> <p class="caption" role="heading"><span class="caption-text">Schedule</span></p> <ul> <li class="toctree-l1"><a class="reference internal" href="Schedule/week_0.html">Preliminaries</a></li> <li class="toctree-l1"><a class="reference internal" href="Schedule/week_1.html">Week 1 (1/31-2/6)</a></li> <li class="toctree-l1"><a class="reference internal" href="Schedule/week_2.html">Week 2 (2/7-2/13)</a></li> <li class="toctree-l1"><a class="reference internal" href="Schedule/week_3.html">Week 3 (2/14-2/20)</a></li> <li class="toctree-l1"><a class="reference internal" href="Schedule/week_4.html">Week 4 (2/21-2/27)</a></li> <li class="toctree-l1"><a class="reference internal" href="Schedule/week_5.html">Week 5 (2/28-3/6)</a></li> <li class="toctree-l1"><a class="reference internal" href="Schedule/week_6.html">Week 6 (3/7-3/13)</a></li> <li class="toctree-l1"><a class="reference internal" href="Schedule/week_7.html">Week 7 (3/14-3/20)</a></li> </ul> <p class="caption" role="heading"><span class="caption-text">Tools</span></p> <ul> <li class="toctree-l1"><a class="reference internal" href="Tools/Numpy/numpy_toc.html">Numpy</a></li> <li class="toctree-l1"><a class="reference internal" href="Tools/Pandas/pandas_toc.html">Pandas</a></li> <li class="toctree-l1"><a class="reference internal" href="Tools/Seaborn/seaborn_toc.html">Seaborn</a></li> <li class="toctree-l1"><a class="reference internal" href="Tools/Plotly/plotly_toc.html">Plotly</a></li> <li class="toctree-l1"><a class="reference internal" href="Tools/requests/requests.html">Requests</a></li> <li class="toctree-l1"><a class="reference internal" href="Tools/beautiful_soup/beautiful_soup.html">Beautiful Soup</a></li> </ul> <p class="caption" role="heading"><span class="caption-text">Projects</span></p> <ul> <li class="toctree-l1"><a class="reference internal" href="Projects/mnist_with_knn/mnist_with_knn.html">Project: Recognizing digits with k-NN</a></li> <li class="toctree-l1"><a class="reference internal" href="Projects/mnist_with_k_means/mnist_with_k_means.html">Project: MNIST with k-means</a></li> <li class="toctree-l1"><a class="reference internal" href="Projects/baby_names/baby_names.html">Project: Baby names</a></li> </ul> </div> </div> </nav> <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"> <nav class="wy-nav-top" aria-label="top navigation"> <i data-toggle="wy-nav-top" class="fa fa-bars"></i> <a href="master.html">MTH 448/548</a> </nav> <div class="wy-nav-content"> <div class="rst-content"> <div role="navigation" aria-label="breadcrumbs navigation"> <ul class="wy-breadcrumbs"> <li><a href="master.html">MTH 448/548</a> »</li> <li>MTH 448/548 Syllabus</li> <li class="wy-breadcrumbs-aside"> </li> </ul> <hr/> </div> <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article"> <div itemprop="articleBody"> <style> /* CSS overrides for sphinx_rtd_theme */ /* 24px margin */ .nbinput.nblast.container, .nboutput.nblast.container { margin-bottom: 19px; /* padding has already 5px */ } /* ... except between code cells! */ .nblast.container + .nbinput.container { margin-top: -19px; } .admonition > p:before { margin-right: 4px; /* make room for the exclamation icon */ } /* Fix math alignment, see https://github.com/rtfd/sphinx_rtd_theme/pull/686 */ .math { text-align: unset; } </style> <section id="mth-448-548-syllabus"> <h1>MTH 448/548 Syllabus<a class="headerlink" href="#mth-448-548-syllabus" title="Permalink to this headline">¶</a></h1> <section id="class-meetings"> <h2>Class meetings<a class="headerlink" href="#class-meetings" title="Permalink to this headline">¶</a></h2> <div class="line-block"> <div class="line">Mon Wed 12:00-1:50 PM</div> <div class="line">250 Mathematics Building</div> </div> </section> <section id="instructor"> <h2>Instructor<a class="headerlink" href="#instructor" title="Permalink to this headline">¶</a></h2> <div class="line-block"> <div class="line">Bernard Badzioch</div> <div class="line"><strong>E-mail:</strong> <a class="reference external" href="mailto:badzioch%40buffalo.edu">badzioch<span>@</span>buffalo<span>.</span>edu</a></div> <div class="line"><strong>Office Hours:</strong> Wed 5:30-7:00 PM on MTH 448/548 Discord server.</div> </div> </section> <section id="prerequisites"> <h2>Prerequisites<a class="headerlink" href="#prerequisites" title="Permalink to this headline">¶</a></h2> <p>This course assumes that you have some experience with programming in Python, and with such Python libraries as matplotlib or numpy (although we will start the course with a review of numpy). I will also assume that you are familiar with Jupyter Notebook: code cells, markdown cells etc. If you have not used Jupyter Notebook before, install the Anaconda distribution (see below), which Jupyter Notebook is a part of, and get acquainted with it. Feel free to let me know if you have any questions.</p> </section> <section id="learning-outcomes"> <h2>Learning Outcomes<a class="headerlink" href="#learning-outcomes" title="Permalink to this headline">¶</a></h2> <p>After taking this course you should be able to:</p> <ul class="simple"> <li><p>Understand various common formats of data (csv, html, xml, json, SQL databases etc.) and how to use them.</p></li> <li><p>Manipulate data using such tools as numpy, pandas, json, BeautifulSoup, SQL etc.</p></li> <li><p>Visualize data using matplotlib, seaborn and plotly.</p></li> <li><p>Apply some machine learning methods to analyze data.</p></li> <li><p>Describe in writing results of data exploration and analysis.</p></li> </ul> </section> <section id="course-resources"> <h2>Course Resources<a class="headerlink" href="#course-resources" title="Permalink to this headline">¶</a></h2> <p><strong>Laptop.</strong> We will be writing code during all class meetings. For this reason you need to bring a laptop to each class. Any operating system (Windows/Mac/Linux) is fine.</p> <p><strong>Software.</strong> We will be using the <a class="reference external" href="https://www.anaconda.com/products/individual#Downloadstarget="_blank"">Anaconda distribution of Python 3.9</a>. This is free software. Even if you have Python already installed on your computer you should install this distribution since it includes Jupyter Notebook and several Python libraries we will need. If you have a previous version of Python installed, please upgrade it so you don’t run into possible compatibility issues.</p> <p><strong>Discord server.</strong> You should have received an invitation link to the MTH 448/548 Discord server in the email with course information. If you don’t have this link, let me know.</p> <p>The Discord server will be used for office hours. Please also use it to post course related questions instead of emailing them to me. This will help other students who may have the same questions. If you notice a question on Discord that you know the answer to, feel free to respond. For personal issues, regarding your grade etc., contact me directly either by email or by a direct message on Discord.</p> <p><strong>Textbook.</strong> There is no required textbook. There are a lot of online resources (documentation of Python libraries etc.) that may be helpful in this course. Some of them are listed on the <a class="reference internal" href="useful_links.html"><span class="doc">Useful Links</span></a> page.</p> <p><strong><a href="https://ublearns.buffalo.edu">UBLearns</a> </strong> will be used for submitting project reports.</p> </section> <section id="grading"> <h2>Grading<a class="headerlink" href="#grading" title="Permalink to this headline">¶</a></h2> <p>There will be no exams in this course. Instead, grades will be assigned based on the following components:</p> <blockquote> <div><ul class="simple"> <li><p>Project Reports 90%</p></li> <li><p>Weekly digests 10%</p></li> </ul> </div></blockquote> <section id="project-reports"> <h3>Project Reports<a class="headerlink" href="#project-reports" title="Permalink to this headline">¶</a></h3> <p>One the main components of this course will be exploratory projects. You will be working on them largely independently, using mathematical and computing tools. The outcome of your work on each project will be a project report that you will submit for grading.</p> <p>Each report will be graded on the A-F scale. Extra credit (a grade of A+) may be assigned for an outstanding work. Some projects will require more effort than others. To reflect it, each project will have a weight of up to 10 points, with 10 points for more work-intensive projects, and fewer points for shorter ones. The cumulative grade for all reports will be computed by:</p> <ol class="arabic simple"> <li><p>converting the letter grade for each report into credits (A = 4.0, A- = 3.67, B+ = 3.33 etc.);</p></li> <li><p>multiplying credits for each report by the report weight and adding all these products;</p></li> <li><p>dividing the resulting number by the sum of weights for all reports;</p></li> <li><p>converting the number obtained in step 3 to a letter grade.</p></li> </ol> <p>Reports will be submitted via UBLearns. Late reports will not be accepted. More information about project reports is posted <a class="reference internal" href="report_guide.html"><span class="doc">here</span></a>.</p> </section> <section id="weekly-digests"> <h3>Weekly digests<a class="headerlink" href="#weekly-digests" title="Permalink to this headline">¶</a></h3> <p><strong>Weekly digest.</strong> Each week you will be asked to submit a short (2-3 sentences) writeup on your study from the previous week. For example, you can write:</p> <ul class="simple"> <li><p>what topics you have found interesting (or boring)</p></li> <li><p>what topics you have found difficult (or easy)</p></li> <li><p>how you feel about the course</p></li> <li><p>anything else you want to share.</p></li> </ul> <p>You will be also asked to submit a question (or questions) regarding the course.</p> <p>You can receive up to 10% credit for these writeups. You can miss one such assignment without loosing any credit, but your weekly digest credit will be lowered by 2% for each subsequent missed assignment (i.e. from 10% to 8% etc.).</p> <p>I may award extra credit to students who are especially active in the course.</p> </section> </section> <section id="incomplete-grades"> <h2>Incomplete Grades<a class="headerlink" href="#incomplete-grades" title="Permalink to this headline">¶</a></h2> <p>See the UB Catalog for the <a class="reference external" href="https://catalog.buffalo.edu/policies/explanation.html">UB Incomplete Policy</a>.</p> </section> <section id="academic-integrity"> <h2>Academic Integrity<a class="headerlink" href="#academic-integrity" title="Permalink to this headline">¶</a></h2> <p>See the UB Catalog for the <a class="reference external" href="https://catalog.buffalo.edu/policies/integrity.html">UB Academic Integrity Policy</a>.</p> </section> <section id="accessibility-resources"> <h2>Accessibility Resources<a class="headerlink" href="#accessibility-resources" title="Permalink to this headline">¶</a></h2> <p>If you need accommodations due to a physical or learning disability please contact the <a class="reference external" href="https://www.buffalo.edu/studentlife/who-we-are/departments/accessibility.html">UB Accessibility Resources Office</a> to make appropriate arrangements.</p> </section> </section> </div> </div> <footer> <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation"> <a href="to_do.html" class="btn btn-neutral float-right" title="Current Tasks" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a> <a href="master.html" class="btn btn-neutral float-left" title="MTH 448/548 Data Oriented Computing" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a> </div> <hr/> <div role="contentinfo"> <p> <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="width: 100px; border-width:0" src="https://mirrors.creativecommons.org/presskit/buttons/80x15/svg/by-sa.svg" /></a> <a href="mailto:admin@mth548.org">Bernard Badzioch</a> <span class="lastupdated"><br/> Last updated on Mar 12, 2022. </span> </p> </div> Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/rtfd/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>. </footer> </div> </div> </section> </div> <script type="text/javascript"> jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); </script> <!-- Theme Analytics --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-161474487-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
r = requests.get("https://mth548.org/_static/report_rubrics.pdf")
r.status_code
200
with open("rubrics.pdf", "wb") as f:
f.write(r.content)
ls
rubrics.pdf week_7_prep.ipynb week_7.ipynb week_7_prep_2020.ipynb
grad_url = "http://www.buffalo.edu/cas/math/people/grad-directory.html"
grads = requests.get(grad_url).text
grads
'<!DOCTYPE HTML><html lang="en" class="ubcms-65"><!-- cmspub06 0314-130808 --><head><link rel="preconnect" href="https://www.googletagmanager.com/" crossorigin/><link rel="dns-prefetch" href="https://www.googletagmanager.com/"/><link rel="dns-prefetch" href="https://connect.facebook.net/"/><link rel="dns-prefetch" href="https://www.google-analytics.com/"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta http-equiv="content-type" content="text/html; charset=UTF-8"/><meta id="meta-viewport" name="viewport" content="width=device-width,initial-scale=1"/><script>if (screen.width > 720 && screen.width < 960) document.getElementById(\'meta-viewport\').setAttribute(\'content\',\'width=960\');</script><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);})(window,document,\'script\',\'dataLayer\',\'GTM-T5KRRKT\');</script><title>Graduate Student Directory - Department of Mathematics - University at Buffalo</title><link rel="canonical" href="https://www.buffalo.edu/cas/math/people/grad-directory.html"/><meta name="date" content="2022-03-01"/><meta property="og:title" content="Graduate Student Directory"/><meta property="og:description" content=" A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z "/><meta property="og:image" content="https://www.buffalo.edu/etc/designs/ubcms/clientlibs-main/images/ub-social.png.img.512.auto.png/1615975618792.png"/><meta property="og:image:alt" content="University at Buffalo"/><meta name="twitter:card" content="summary_large_image"/><meta property="thumbnail" content="https://www.buffalo.edu/cas/math/people/grad-directory/_jcr_content/par/image.img.512.auto.jpg/1629919606956.jpg"/><meta property="thumbnail:alt" content="1. "/><link rel="stylesheet" href="/v-5150cc622c68590719981526ed5c6b25/etc/designs/ubcms/clientlibs-privateauthor.min.5150cc622c68590719981526ed5c6b25.css" type="text/css"><link rel="stylesheet" href="/v-3d5e50c59343478ac1f797325d06d08c/etc/designs/ubcms/clientlibs.min.3d5e50c59343478ac1f797325d06d08c.css" type="text/css"><link type="text/css" rel="stylesheet" href="/v-9cc4b89851550cf5e105d25db85ba3e9/etc/designs/cas/math/css/main.css"/><script src="/v-a83c7a045b4a3c7a9600758298bc4ad8/etc/designs/ubcms/clientlibs-polyfills.min.a83c7a045b4a3c7a9600758298bc4ad8.js" nomodule></script><script src="/etc.clientlibs/clientlibs/granite/jquery.min.cee8557e8779d371fe722bbcdd3b3eb7.js"></script><script src="/v-7cc18f24035dfccf28f4dfe0af578c03/etc/designs/ubcms/clientlibs.min.7cc18f24035dfccf28f4dfe0af578c03.js"></script><style>body.page #page, body.page .page-inner {background-color:#FFFFFF}</style><script>(function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\');ga(\'create\', \'UA-67291618-1\', \'auto\');ga(\'send\', \'pageview\');</script><style>\n img.lazyload,img.lazyloading{position:relative;background:#EEE}\n img.lazyload:before,img.lazyloading:before{content:"";background:#EEE;position:absolute;top:0;left:0;bottom:0;right:0}\n </style></head><body class="contentpage page"><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T5KRRKT" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><nav aria-label="skip to content"><a href="#skip-to-content" id="skip-to-content-link">Skip to Content</a></nav><div></div><div id="page"><div class="page-inner"><div class="page-inner-1"><div class="page-inner-2"><div class="page-inner-2a"></div><div class="page-inner-3"><header><div class="innerheader inheritedreference reference parbase"><div class="headerconfigpage contentpage page basicpage"><div class="par parsys "><div class="alertbanner reference parbase section"><div contenttreeid="alertbanner" contenttreestatus="Not published" style="display:none;"></div><script>jQuery(\'.cap-message\').detach().insertBefore(\'#page\').wrap(\'<section aria-label="UB Alert">\');</script></div><div class="header section"><style>\n .innerheader { padding-top: 158px }\n .header { height: 158px }\n .header .main { height: 134px }\n </style><div><div class="top theme-blue" data-set="header-links"><ul class="school-links"><li><a href="http://arts-sciences.buffalo.edu/">College of Arts and Sciences</a></li></ul><ul class="pervasive-links"><li><a href="//www.buffalo.edu">UB Home</a></li><li><a href="//www.buffalo.edu/maps">Maps</a></li><li><a href="//www.buffalo.edu/directory/">UB Directory</a></li></ul></div><div class="main theme-blue brand-extension lines-1"><div class="lockup"><a href="//www.buffalo.edu"> <i class="icon icon-ub-logo"></i><span class="ada-hidden">University at Buffalo</span> <span class="logo"> <img class="black" src="/v-be9166b6b4a1ea7e5771e2eba1d410cf/etc.clientlibs/wci/components/block/header/clientlibs/resources/ub-logo-black.png" alt="" width="181" height="20"/> </span> </a><div class="mobile-links" data-set="header-links"></div><a class="title" href="/cas/math.html">Department of Mathematics</a></div><div class="social" data-set="headersocial"></div><div class="tasknav" data-set="tasknav"><div class="buttoncomponent sidebyside orange"><a href="http://www.buffalo.edu/ub_admissions/apply-now.html" target="_blank"> Apply to UB </a></div><div class="buttoncomponent sidebyside blue"><a href="http://www.buffalo.edu/cas/math/about-us/contact-us.html"> Contact Us </a></div><div class="buttoncomponent sidebyside green"><a href="https://ubfoundation.buffalo.edu/giving/?gift_allocation=01-3-0-01240" target="_blank"> Support UB Math </a></div></div></div></div></div><div class="reference parbase section"><div class="unstructuredpage page basicpage"><div class="par parsys "><div class="list parbase section"><div id="ubcms-gen-263326505" data-columnize-row="1"><ul class="list-style-detail" data-columnize="1"><li><div class="long-term-alert-banner"><div class="text parbase section"><p><b>COVID-19 UPDATES • 3/4/2022</b></p><ul><li><a href="/coronavirus/latest-update.html">UB lifts vaccination policy for campus events</a></li></ul></div></div></li></ul></div><script>\n UBCMS.list.listlimit(\'ubcms\\u002Dgen\\u002D263326505\', \'100\',\n \'100\');\n </script></div><script>UBCMS.longTermAlert.init()\n</script></div></div><div contenttreeid="reference" contenttreestatus="Not published" style="display:none;"></div></div><div class="mobilemenu section"><!--noindex--><nav aria-label="mobile navigation menu"><ul><li class="mobileheader-button-menu" style="display: none"><a href="#">Menu</a></li><li class="mobileheader-button-search" style="display: none"><a href="#">Search</a></li></ul></nav><!--endnoindex--><div id="mobile-search" class="menu"><div id="mobile-search-inner" class="menu-inner" data-set="mobile-search"></div></div><div id="mobile-menu" class="menu"><div class="menu-inner"><div id="mobile-menu-inner"><div class="loading"><!--noindex-->Loading menu...<!--endnoindex--></div></div><div class="tasknav" data-set="tasknav"></div><div class="headersocial" data-set="headersocial"></div></div></div><script>\n jQuery(\'.mobileheader-button-menu\').removeAttr(\'style\');\n jQuery(document).ready(function() {\n if ($(\'.topnav .search .search-content\').length > 0) {\n $(\'.mobileheader-button-search\').removeAttr(\'style\');\n }\n });\n UBCMS.rwd.mobileMenu.load(\'\\/content\\/cas\\/math\\/jcr:content.nav.html\', \'https:\\/\\/www.buffalo.edu\\/cas\\/math\\/people\\/grad-directory.html\');\n</script></div><div class="topnav section"><nav class="topnav-inner" aria-label="site navigation"><div class="main"><ul class="menu"><li class="first theme-secondary theme-standard-gray"><a id="ubcms-gen-263326511" aria-haspopup="true" href="/cas/math/about-us.html"><span class="container">About</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326511"><ul class="submenu clearfix"><li class="first"><a aria-label="About:Why Choose Us?" href="/cas/math/about-us/why-choose.html">Why Choose Us?</a></li><li><a aria-label="About:Our Mission" href="/cas/math/about-us/our-mission.html">Our Mission</a></li><li><a aria-label="About:Our Alumni, Students, and Faculty" href="/cas/math/about-us/our-alumni.html">Our Alumni, Students, and Faculty</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Our Alumni, Students, and Faculty:Our Alumni" href="/cas/math/about-us/our-alumni/our-alumni.html">Our Alumni</a></li><li><a aria-label="Our Alumni, Students, and Faculty:Our Students" href="/cas/math/about-us/our-alumni/our-students.html">Our Students</a></li><li class="last"><a aria-label="Our Alumni, Students, and Faculty:Our Faculty" href="/cas/math/about-us/our-alumni/our-faculty.html">Our Faculty</a></li></ul></div></li><li><a aria-label="About:Memberships" href="/cas/math/about-us/memberships.html">Memberships</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Memberships:American Mathematical Society" href="/cas/math/about-us/memberships/AMS.html">American Mathematical Society</a></li><li><a aria-label="Memberships:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li><li class="last"><a aria-label="Memberships:Mathematical Sciences Research Institute" href="/cas/math/about-us/memberships/MSRI.html">Mathematical Sciences Research Institute</a></li></ul></div></li><li><a aria-label="About:Mathematicians of the African Diaspora" href="/cas/math/about-us/mathematicians-of-the-african-diaspora.html">Mathematicians of the African Diaspora</a></li><li><a aria-label="About:About the University" href="/cas/math/about-us/about-the-university.html">About the University</a></li><li><a aria-label="About:About Buffalo-Niagara" href="/cas/math/about-us/the-buffalo-niagara-region.html">About Buffalo-Niagara</a></li><li><a aria-label="About:Visiting UB" href="/cas/math/news-events/visiting.html">Visiting UB</a></li><li class="last"><a aria-label="About:Contact Us" href="/cas/math/about-us/contact-us.html">Contact Us</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray active-trail"><a id="ubcms-gen-263326519" aria-haspopup="true" href="/cas/math/people.html"><span class="container">People</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326519"><ul class="submenu clearfix"><li class="first"><a aria-label="People:Faculty" href="/cas/math/people/faculty.html">Faculty</a></li><li><a aria-label="People:Staff" href="/cas/math/people/staff_directory.html">Staff</a></li><li><a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html">Emeriti Faculty</a></li><li><a aria-label="People:Instructors" href="/cas/math/people/instructors.html">Instructors</a></li><li><a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html">Visiting Scholars</a></li><li class="active-trail"><a class="active" aria-label="People:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></li><li class="last"><a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html">Alumni</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li><a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li><li class="last"><a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to Present</a></li></ul></div></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-263326525" aria-haspopup="true" href="/cas/math/research.html"><span class="container">Research</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326525"><ul class="submenu clearfix"><li class="first"><a aria-label="Research:Algebra" href="/cas/math/research/algebra.html">Algebra</a></li><li><a aria-label="Research:Analysis" href="/cas/math/research/analysis.html">Analysis</a></li><li><a aria-label="Research:Applied Mathematics" href="/cas/math/research/applied-mathematics.html">Applied Mathematics</a></li><li><a aria-label="Research:Geometry and Topology " href="/cas/math/research/geometry-topology.html">Geometry and Topology </a></li><li class="last"><a aria-label="Research:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html">Undergraduate Research</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-263326532" aria-haspopup="true" href="/cas/math/ug.html"><span class="container">Undergraduate</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326532"><ul class="submenu clearfix"><li class="first"><a aria-label="Undergraduate:Undergraduate Programs" href="/cas/math/ug/undergraduate-programs.html">Undergraduate Programs</a></li><li><a aria-label="Undergraduate:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html">Undergraduate Research</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Undergraduate Research:Special Research Projects" href="/cas/math/ug/undergraduate-research/special-projects.html">Special Research Projects</a></li><li class="last"><a aria-label="Undergraduate Research:Summer Math Scholarship" href="/cas/math/ug/undergraduate-research/summer.html">Summer Math Scholarship</a></li></ul></div></li><li><a aria-label="Undergraduate:Honors, Awards, and Scholarships" href="/cas/math/ug/honors--awards--and-scholarships.html">Honors, Awards, and Scholarships</a></li><li><a aria-label="Undergraduate:Undergraduate Courses" href="/cas/math/ug/ug-courses.html">Undergraduate Courses</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Undergraduate Courses:Sample Syllabi" href="/cas/math/ug/ug-courses/syllabi.html">Sample Syllabi</a></li><li><a aria-label="Undergraduate Courses:MTH 121 and 122 Textbook" href="/cas/math/ug/ug-courses/mth121-122-textbook.html">MTH 121 and 122 Textbook</a></li><li class="last"><a aria-label="Undergraduate Courses:MTH 306 Textbook" href="/cas/math/ug/ug-courses/mth-306-textbook.html">MTH 306 Textbook</a></li></ul></div></li><li><a aria-label="Undergraduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home">Directed Reading Program</a></li><li><a aria-label="Undergraduate:Mathematics Resources" href="/cas/math/ug/resources.html">Mathematics Resources</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Mathematics Resources:Mathematics Placement Exam" href="/cas/math/ug/resources/mathplacement.html">Mathematics Placement Exam</a></li><li><a aria-label="Mathematics Resources:Mathematics Placement Exam Frequently Asked Questions" href="/cas/math/ug/resources/MPEFAQ.html">Mathematics Placement Exam Frequently Asked Questions</a></li><li class="last"><a aria-label="Mathematics Resources:Force Registration" href="/cas/math/ug/resources/force-registration.html">Force Registration</a></li></ul></div></li><li><a aria-label="Undergraduate:Mathematics Help Center" href="/cas/math/ug/help-center.html">Mathematics Help Center</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first last"><a aria-label="Mathematics Help Center:Online Help Sessions" href="/content/cas/math/ug/help-center/zoom-pw.html">Online Help Sessions</a></li></ul></div></li><li class="last"><a aria-label="Undergraduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-263326542" aria-haspopup="true" href="/cas/math/grad.html"><span class="container">Graduate</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326542"><ul class="submenu clearfix"><li class="first"><a aria-label="Graduate:Master\'s Program" href="/cas/math/grad/master-program.html">Master\'s Program</a></li><li><a aria-label="Graduate:Doctoral Program (PhD)" href="/cas/math/grad/doctoral-program.html">Doctoral Program (PhD)</a></li><li><a aria-label="Graduate:Request Information" href="/cas/math/grad/request-information.html">Request Information</a></li><li><a aria-label="Graduate:Admissions" href="/cas/math/grad/grad-admissions.html">Admissions</a></li><li><a aria-label="Graduate:Courses" href="/cas/math/grad/grad-courses.html">Courses</a></li><li><a aria-label="Graduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home">Directed Reading Program</a></li><li><a aria-label="Graduate:Graduate Research" href="/cas/math/grad/grad-research.html">Graduate Research</a></li><li><a aria-label="Graduate:Fellowships, Scholarships, Awards" href="/cas/math/grad/fellowships-awards.html">Fellowships, Scholarships, Awards</a></li><li><a aria-label="Graduate:PhD Recipients, 2010 to present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to present</a></li><li><a aria-label="Graduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li><li><a aria-label="Graduate:Graduate Student Lecture Series" href="/cas/math/grad/gsls.html">Graduate Student Lecture Series</a></li><li class="last active-trail"><a aria-label="Graduate:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-263326552" aria-haspopup="true" href="/cas/math/courses.html"><span class="container">Courses</span></a></li><li class="last theme-secondary theme-standard-gray"><a id="ubcms-gen-263326553" aria-haspopup="true" href="/cas/math/news-events/news.html"><span class="container">News & Events</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326553"><ul class="submenu clearfix"><li class="first"><a aria-label="News & Events:News" href="/cas/math/news-events/news.html">News</a></li><li><a aria-label="News & Events:Events " href="/cas/math/news-events/calendar.html">Events </a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Events :Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li class="last"><a aria-label="Events :Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li></ul></div></li><li><a aria-label="News & Events:Myhill Lecture Series" href="/cas/math/news-events/myhill.html">Myhill Lecture Series</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Myhill Lecture Series:Laura DeMarco, 2019" href="/cas/math/news-events/myhill/laura-demarco.html">Laura DeMarco, 2019</a></li><li><a aria-label="Myhill Lecture Series:Mark Newman, 2018" href="/cas/math/news-events/myhill/mark-newman.html">Mark Newman, 2018</a></li><li><a aria-label="Myhill Lecture Series:Guoliang Yu, 2017" href="/cas/math/news-events/myhill/guoliangyu.html">Guoliang Yu, 2017</a></li><li><a aria-label="Myhill Lecture Series:Gopal Prasad, 2016" href="/cas/math/news-events/myhill/gopal-prasad.html">Gopal Prasad, 2016</a></li><li><a aria-label="Myhill Lecture Series:Ciprian Manolescu, 2015" href="/cas/math/news-events/myhill/ciprian-manolescu.html">Ciprian Manolescu, 2015</a></li><li><a aria-label="Myhill Lecture Series:Percy A. Deift, 2014" href="/cas/math/news-events/myhill/percy-deift.html">Percy A. Deift, 2014</a></li><li class="last"><a aria-label="Myhill Lecture Series:Peter Sarnak, 2013" href="/cas/math/news-events/myhill/peter-sarnak.html">Peter Sarnak, 2013</a></li></ul></div></li><li><a aria-label="News & Events:NERCCS 2020" href="/cas/math/news-events/nerccs-2020.html">NERCCS 2020</a></li><li><a aria-label="News & Events:News & Events Archive" href="/cas/math/news-events/archives.html">News & Events Archive</a></li><li class="last"><a aria-label="News & Events:Visiting UB" href="/cas/math/news-events/visiting.html">Visiting UB</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li></ul></div><div class="right"><div class="search"><!--noindex--><div class="search-menu" tabindex="0"><div class="search-label">Search</div><!-- Uses appendAround.js script to transfer this search form to mobile nav menu via data-set attribute. --><div class="search-content" data-set="mobile-search"><form class="search-form" method="GET" action="/cas/math/searchresults.html" onsubmit="return this.q.value != \'\'"><div class="search-container" role="search"><input autocomplete="off" id="ubcms-gen-263326561" class="search-input" name="q" type="text" placeholder="Search" aria-label="Search"/> <button class="search-submit" type="submit" value="Search" aria-label="Search"></button></div></form></div></div><!--endnoindex--></div><div class="audiencenav list parbase"><div tabindex="0" class="audiencenav-wrapper"><div class="label">Info For</div><ul><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/information-for-students.html"> Current Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/ug/undergraduate-programs.html"> Future Undergraduate Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/grad.html"> Future Graduate Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/information-for-faculty-staff.html"> Faculty & Staff </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/people/alumni-friends.html"> Alumni & Friends </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> Diversity, Equity, and Inclusive Excellence Resources </a></li></ul></div></div></div></nav><script>$(".topnav").accessibleDropDown();</script></div></div></div><div contenttreeid="innerheader" contenttreestatus="Not published" style="display:none;"></div></div></header><div id="columns" class="two-column clearfix"><div class="columns-bg columns-bg-1"><div class="columns-bg columns-bg-2"><div class="columns-bg columns-bg-3"><div class="columns-bg columns-bg-4"><div id="left"><div class="leftnav"><nav class="inner" aria-label="section navigation"><div class="title"><a href="/cas/math/people.html"><span class="title">People</span></a></div><ul class="menu nav-level-1"><li class="first"><a aria-label="People:Faculty" href="/cas/math/people/faculty.html">Faculty</a></li><li><a aria-label="People:Staff" href="/cas/math/people/staff_directory.html">Staff</a></li><li><a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html">Emeriti Faculty</a></li><li><a aria-label="People:Instructors" href="/cas/math/people/instructors.html">Instructors</a></li><li><a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html">Visiting Scholars</a></li><li class="active-trail"><span><a class="active" aria-label="People:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></span></li><li class="last expand-submenu"><a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html">Alumni</a><ul class="menu nav-level-2"><li class="first expand-submenu"><a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li class="expand-submenu"><a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li><li class="last expand-submenu"><a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to Present</a></li></ul></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></nav></div><div class="mobile-left-col hide-in-narrow" data-set="mobile-center-bottom-or-right-top"><div class="leftcol parsys iparsys" role="complementary"><div class="section"><div class="new"></div></div><div class="iparys_inherited"><div class="leftcol iparsys parsys"><div class="flexmodule imagebase section"><div id="ubcms-gen-263326568" class="flexmodule-inner "><div class="title"><h2>Diversity, Equity, and Inclusive Excellence Resources</h2></div><div class="teaser teaser-block flexmodule-style flexmodule-style-largeimg"><div class="teaser-inner"><div class="teaser-images"><div class="teaser-image"><a href="http://www.buffalo.edu/inclusion/resources/IXResources.html" target="_blank"><noscript><picture contenttreeid=\'flexmodule\' contenttreestatus=\'Not published\'><source type="image/png" media="(max-width: 568px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x"><source type="image/png" media="(max-width: 720px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png"><source type="image/png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"><img height="131" alt="Diversity, Equity, and Inclusive Excellence Resources. " width="209" class="img-209 img-209x131 cq-dd-image" src="/content/cas/math/people/_jcr_content/leftcol/flexmodule.img.209.131.png/1607108331977.png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"></picture></noscript><picture class="no-display" contenttreeid=\'flexmodule\' contenttreestatus=\'Not published\'><source type="image/png" media="(max-width: 568px)" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x"><source type="image/png" media="(max-width: 720px)" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png"><source type="image/png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"><img height="131" alt="Diversity, Equity, and Inclusive Excellence Resources. " width="209" class="img-209 img-209x131 cq-dd-image lazyload" data-src="/content/cas/math/people/jcr%3acontent/leftcol/flexmodule.img.209.131.png/1607108331977.png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></a></div></div><div class="teaser-content"><div class="teaser-body"><p>UB is committed to achieving inclusive excellence in a deliberate, intentional and coordinated fashion, embedding it in every aspect of our operations. We aspire to foster a healthy, productive, ethical, fair, and affirming campus community to allow all students, faculty and staff to thrive and realize their full potential. <br/></p></div><div class="teaser-links"><div class="list"><div id="ubcms-gen-263326569" data-columnize-row="1"><ul class="link-list" data-columnize="1"><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/promoting-equal-employment-opportunity-and-diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Promoting Equal Employment Opportunity and Diversity</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Inclusive Excellence Resources</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/toolkits_trainings.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Toolkits</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/studentlife/who-we-are/departments/diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">UB Intercultural and Diversity Center</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/diversity-innovation.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">UB Center for Diversity Innovation</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/external-resources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">External Resources</span> </span> </a> </span></li></ul></div><div class="clearfix"></div><script>\n UBCMS.list.listlimit(\'ubcms\\u002Dgen\\u002D263326569\', \'100\',\n \'100\');\n </script></div></div></div></div><div class="teaser-clear"></div></div></div><div class="flexmodule-clear"></div></div></div></div></div></div></div><script>\n (function() {\n var $firstLeftIparsysInherited = $(\'#left .iparys_inherited\').eq(0);\n var $firstLeftIparsysSection = $(\'#left > .iparsys:first-child > .section:first-child\');\n var $mcbort = $(\'.mobile-center-bottom-or-right-top\');\n\n if ($firstLeftIparsysInherited.length && $firstLeftIparsysInherited.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $firstLeftIparsysInherited.addClass(\'empty\');\n \n if ($firstLeftIparsysSection.length && $firstLeftIparsysSection.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $firstLeftIparsysSection.addClass(\'empty\');\n \n if ($mcbort.length && $mcbort.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $mcbort.addClass(\'empty\');\n\n $(\'[role=complementary]\').each(function() {\n var $this = $(this);\n if ($this.children().filter(\':not(.empty)\').filter(\':not(:empty)\').length === 0)\n $this.removeAttr(\'role\');\n });\n\n if ($(\'.leftcol[role=complementary]\').length > 0 && $(\'#right[role=complementary]\').length > 0) {\n $(\'.leftcol[role=complementary]\').attr(\'aria-label\', \'left column\');\n $(\'#right[role=complementary]\').attr(\'aria-label\', \'right column\');\n }\n })();\n </script><div id="skip-to-content"></div><div id="center" role="main"><div class="mobile-content-top" data-set="content-top"></div><div class="par parsys"><div class="title section"><h1 onpaste="onPasteFilterPlainText(event)" id="title"> Graduate Student Directory </h1></div><div class="image-container image-container-680"><div class="image border-hide"><noscript><picture contenttreeid=\'image\' contenttreestatus=\'Not published\'><source type="image/jpeg" media="(max-width: 568px)" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.448.auto.m.q50.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.576.auto.m.q50.jpg/1629919606956.jpg 2x"><source type="image/jpeg" media="(max-width: 720px)" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.688.auto.q80.jpg/1629919606956.jpg"><source type="image/jpeg" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.680.auto.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"><img alt="1. " width="680" class="img-680 cq-dd-image" src="/content/cas/math/people/grad-directory/_jcr_content/par/image.img.680.auto.jpg/1629919606956.jpg" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'image\' contenttreestatus=\'Not published\'><source type="image/jpeg" media="(max-width: 568px)" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.448.auto.m.q50.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.576.auto.m.q50.jpg/1629919606956.jpg 2x"><source type="image/jpeg" media="(max-width: 720px)" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.688.auto.q80.jpg/1629919606956.jpg"><source type="image/jpeg" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.680.auto.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"><img alt="1. " width="680" class="img-680 cq-dd-image lazyload" data-src="/content/cas/math/people/grad-directory/jcr%3acontent/par/image.img.680.auto.jpg/1629919606956.jpg" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script><!-- <span data-sly-test="false" class="aria-hidden"></span> --></div></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="top"> Mathematics Graduate Student Directory 2021-2022 </h2></div><div class="introtext text parbase section"><p><a href="#letter_a">A</a> | <a href="#letter_b">B</a> | <a href="#letter_c">C</a> | <a href="#letter_d">D</a> | E | <a href="#letter_f">F</a> | <a href="#letter_g">G</a> | <a href="#letter_h">H</a> | I | <a href="#letter_j">J</a> | <a href="#letter_h">K</a> | <a href="#letter_l">L</a> | <a href="#letter_m">M</a> | <a href="#letter_n">N</a> | <a href="#letter_o">O</a> | <a href="#letter_p">P</a> | Q | <a href="#letter_r">R</a> | <a href="#letter_s">S</a> | <a href="#letter_t">T</a> | <a href="#letter_u">U</a> | <a href="#letter_v">V</a> | <a href="#letter_w">W</a> | <a href="#letter_x">X</a> | <a href="#letter_y">Y</a> | <a href="#letter_z">Z</a></p></div><div class="hr hrline" style="clear:left"></div><div class="text parbase section"><p><i>Offices as listed are in the Mathematics Building, North Campus.</i></p></div><div class="hr hrline" style="clear:left"></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="title_3"> A </h2></div><div class="text parbase section"><p><b>Abeya Ranasinghe Mudiyanselage, Asela V.</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:aselavir@buffalo.edu">aselavir@buffalo.edu</a></p><p><b>Ahn, Min Woong</b><br/> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:minwoong@buffalo.edu">minwoong@buffalo.edu</a></p><p><b>Alegria, Linda</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:lindaale@buffalo.edu">lindaale@buffalo.edu</a><br/></p></div><div class="hr hrline" style="clear:left"></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_b"> B </h2></div><div class="text parbase section"><p><b>Betz, Katherine</b><br/> Office: 132 Phone: 645-8820<br/> Email: <a href="mailto:kbetz2@buffalo.edu">kbetz2@buffalo.edu</a></p><p><b>Bhaumik, Jnanajyoti</b><br/> Office: 129 Mathematics Building<br/> Phone: 645-8817<br/> Email: <a href="mailto:jnanajyo@buffalo.edu">jnanajyo@buffalo.edu</a></p><p> </p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="hr hrline" style="clear:left"></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_c"> C </h2></div><div class="text parbase section"><p><b>Cain Charles</b><br/> Email: <a href="mailto:ccain2@buffalo.edu">ccain2@buffalo.edu</a></p><p><b>Casper, Michael<br/> </b> Office: 222 Phone: 645-8779<br/> Email: <a href="mailto:mjcasper@buffalo.edu">mjcasper@buffalo.edu</a></p><p><b>Chang, Hong<br/> </b> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:hchang24@buffalo.edu">hchang24@buffalo.edu</a></p><p><b>Chen, Yen-Lin<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:yenlinch@buffalo.edu">yenlinch@buffalo.edu</a><br/></p><p><b>Cheuk, Ka Yue<br/> </b> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:kayueche@buffalo.edu">kayueche@buffalo.edu</a></p><p><b>Cosgrove, Gage (Makenzie)<br/> </b> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:gagecosg@buffalo.edu">gagecosg@buffalo.edu</a></p><p> </p></div><div class="hr hrline" style="clear:left"></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_d"> D </h2></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_e"> E </h2></div><div class="text parbase section"><p><b>Engelhardt, Carolyn<br/> </b> Email: <a href="mailto:cengelha@buffalo.edu">cengelha@buffalo.edu</a><br/></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_f"> F </h2></div><div class="text parbase section"><p><b>Fonseca dos Reis, Elohim<br/> </b> Office: 313 Phone: 645-8804<br/> Email: <a href="mailto:elohimfo@buffalo.edu">elohimfo@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_g"> G </h2></div><div class="text parbase section"><p><b>Gkogkou, Aikaterini</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:agkogkou@buffalo.edu">agkogkou@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_h"> H </h2></div><div class="text parbase section"><p><b>Haverlick, Justin<br/> </b> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:jmhaverl@buffalo.edu">jmhaverl@buffalo.edu</a></p><p><b>Herron, Amy</b><br/> Office: 135 <br/> Email: <a href="mailto:ajherron@buffalo.edu">ajherron@buffalo.edu</a></p><p><b>Hovland, Seth</b><br/> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:sethhovl@buffalo.edu">sethhovl@buffalo.edu</a></p><p><b>Hung, Tsz Fun</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:tszfunhu@buffalo.edu">tszfunhu@buffalo.edu</a></p><p><b>Hutchings, Raymond</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:rhhutchi@buffalo.edu">rhhutchi@buffalo.edu</a></p><p><b>Huynh, Bao<br/> </b> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:baohuynh@buffalo.edu">baohuynh@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_j"> J </h2></div><div class="text parbase section"><p><b>Jeong, Myeongjin<br/> </b> Office: 244<br/> Email:<a href="mailto:mjeong31@buffalo.edu">mjeong31@buffalo.edu</a></p><p><b>Jones, Raymond</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:rpjones2@buffalo.edu">rpjones2@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_k"> K </h2></div><div class="text parbase section"><p><b>Kilic, Bengier Ulgen<br/> </b> Office: 106 Phone: 645-8763<br/> Email: <a href="mailto:bengieru@buffalo.edu">bengieru@buffalo.edu</a></p><p><b>Kim, Jiseong<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:jiseongk@buffalo.edu">jiseongk@buffalo.edu</a></p><p><b>Kireyev, Dmitri</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:dmitriki@buffalo.edu">dmitriki@buffalo.edu</a><br/></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_l"> L </h2></div><div class="text parbase section"><p><b>Le, Minh Quang</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:minhquan@buffalo.edu">minhquan@buffalo.edu</a></p><p><b>Leonard, Dakota</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:dl42@buffalo.edu">dl42@buffalo.edu</a></p><p><b>Liao, Chang-Chih</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:cliao9@buffalo.edu">cliao9@buffalo.edu</a></p><p><b>Liao, Yanzhan</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:yanzhanl@buffalo.edu">yanzhanl@buffalo.edu</a></p><p><b>Liu, Ruodan</b><br/> Office: 135 Phone: 645-8832<br/> Email: <a href="mailto:rliu8@buffalo.edu">rliu8@buffalo.edu</a></p><p><b>Liu,Tianmou<br/> </b> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:tianmoul@buffalo.edu">tianmoul@buffalo.edu</a></p><p><b>Liu, Yuan</b><br/> Office: 135 Phone: 645-8832<br/> Email: <a href="mailto:yuanliu@buffalo.edu">yuanliu@buffalo.edu</a></p><p> </p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_m"> M </h2></div><div class="text parbase section"><p><b>Ma, Ning<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:nma22@buffalo.edu">nma22@buffalo.edu</a><br/></p><p><b>Ma, Renda<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:rendama@buffalo.edu">rendama@buffalo.edu</a></p><p><b>Ma, Yuqing</b><br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:yuqingma@buffalo.edu">yuqingma@buffalo.edu</a></p><p><b>Meng, Lingqi<br/> </b> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:lingqime@buffalo.edu">lingqime@buffalo.edu</a></p><p><b>Meyer, Drew</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:drewmeye@buffalo.edu">drewmeye@buffalo.edu</a></p><p><b>Montoro, Michael<br/> </b> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:mnmontor@buffalo.edu">mnmontor@buffalo.edu</a></p><p><b>Moore, Robert</b><br/> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:rcmoore@buffalo.edu">rcmoore@buffalo.edu</a><br/></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_n"> N </h2></div><div class="text parbase section"><p><b>Nguyen, Khanh Truong</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:kn55@buffalo.edu">kn55@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_o"> O </h2></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_p"> P </h2></div><div class="text parbase section"><p><b>Peng, Jun</b><br/> Office: 139 Phone: 645-8824<b><br/> </b> Email: <a href="mailto:jpeng3@buffalo.edu">jpeng3@buffalo.edu</a></p><p><b>Poste, Alex</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:apposte@buffalo.edu">apposte@buffalo.edu</a></p><p> </p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_r"> R </h2></div><div class="text parbase section"><p><b>Rantanen, Matthew<br/> </b> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:mattrant@buffalo.edu">mattrant@buffalo.edu</a></p><p><b>Rele, Adhish</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:adhishpr@buffalo.edu">adhishpr@buffalo.edu</a></p><p><b>Russell, Madison</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:merussel@buffalo.edu">merussel@buffalo.edu</a></p><p><b>Rozwood, Bud<br/> </b> Office: 125 Phone: 645-8815<b><br/> </b> Email: <a href="mailto:budrozwo@buffalo.edu">budrozwo@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_s"> S </h2></div><div class="text parbase section"><p><b>Sarkar, Sayantan<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:sayantan@buffalo.edu">sayantan@buffalo.edu</a></p><p><b>Sharma, Abhishek<br/> </b> Office: 126 Phone: 645-8816<br/> Email: aks28<a href="mailto:sayantan@buffalo.edu">@buffalo.edu</a></p><p><b>Sicuso, Luca</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:lucasicu@buffalo.edu">lucasicu@buffalo.edu</a></p><p><b>Solanki, Deepisha</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:deepisha@buffalo.edu">deepisha@buffalo.edu</a></p><p><b>Som, Bratati<br/> </b> Office: 132 Phone: 645-8820<br/> Email: <a href="mailto:bratatis@buffalo.edu">bratatis@buffalo.edu</a></p><p><b>Song, Zhao<br/> </b> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:zhaosong@buffalo.edu">zhaosong@buffalo.edu</a></p><p><b>Sullivan, Mark</b><br/> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:marksull@buffalo.edu">marksull@buffalo.edu</a></p><p><b>Sun, Yuxun</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:yuxunsun@buffalo.edu">yuxunsun@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_t"> T </h2></div><div class="text parbase section"><p><b>Thongprayoon, Chanon</b><br/> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:chanonth@buffalo.edu">chanonth@buffalo.edu</a><br/> <br/> <br/></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_u"> U </h2></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_v"> V </h2></div><div class="text parbase section"><p><b>Vadnere, Arya Abhijeet</b><br/> Office: 132 Mathematics Building<br/> Phone: 645-8820<br/> Email: <a href="mailto:aryaabhi@buffalo.edu">aryaabhi@buffalo.edu</a></p><p><b>Vinal, Gregory<br/> </b> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:chanonth@buffalo.edu">gregoryv@buffalo.edu</a></p><p> </p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_w"> W </h2></div><div class="text parbase section"><p><b>Wang, Daxun<br/> </b>Office: 141 Phone: 645-8825<br/> Email: <a href="mailto:daxunwan@buffalo.edu">daxunwan@buffalo.edu</a></p><p><b>Wang, Shiruo<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:bwang32@buffalo.edu">shiruowa@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_y"> Y </h2></div><div class="text parbase section"><p><b>Yuan, Cheng</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:chengyua@buffalo.edu">chengyua@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_z"> Z </h2></div><div class="text parbase section"><p><b>Zhang, Baoming</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:baomingz@buffalo.edu">baomingz@buffalo.edu</a></p><p><b>Zhao, Bojun</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:bojunzha@buffalo.edu">bojunzha@buffalo.edu</a></p><p><b>Ziegler, Cameron</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:cz22@buffalo.edu">cz22@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div></div><div class="mobile-content-bottom" data-set="content-bottom"></div><div class="mobile-center-or-right-bottom" data-set="center-or-right-bottom"></div><div class="mobile-center-bottom-or-right-top" data-set="mobile-center-bottom-or-right-top"></div></div></div></div></div></div></div></div></div></div></div></div><footer><div class="footer inheritedreference reference parbase"><div class="footerconfigpage contentpage page basicpage"><div class="par parsys "><div class="htmlsnippet section"><div><style type="text/css">\n\n @only screen and (max-width: 720px){\n \n .simplefooter .simplefootercontents > .copyright {\n clear: both;\n position: relative;\n top: 7px;\n }\n }\n</style></div></div><div class="fatfooter section"><div class="footer-mode-simple clearfix"><a class="ub-logo-link" href="//www.buffalo.edu/"> <img class="ub-logo" src="/v-e541efb31faa2518c910054a542e1234/etc.clientlibs/wci/components/block/fatfooter/clientlibs/resources/ub-logo-175-years.png" alt="University at Buffalo The State University of New York - 175 Years: 1846-2021" width="400"/> </a><div class="footer-columns footer-columns-1"><div class="footer-column footer-column-1"><div class="col1 parsys"><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="title-1"> <a href="/cas/math.html">Department of Mathematics</a> </h2></div><div class="text parbase section"><p>244 Mathematics Building<br/> Buffalo, NY 14260-2900<br/> Phone: (716) 645-6284<br/> Fax: (716) 645-5039</p></div><div class="reference parbase section"><div class="unstructuredpage page basicpage"><div class="par parsys "><div class="hr hrline" style="clear:left"></div><div class="captiontext text parbase section"><p><b>About Our Photos and Videos:</b> Some photos or videos that appear on this site may have been taken prior to the COVID-19 pandemic and therefore may not accurately reflect current operations or adherence to <a href="https://www.buffalo.edu/coronavirus/health-and-safety.html" target="_blank">UB’s Health and Safety Guidelines</a>.<br/></p></div></div></div><div contenttreeid="reference-1" contenttreestatus="Not published" style="display:none;"></div></div></div></div></div><div class="copyright"><span class="copy"></span><script>jQuery(".copyright .copy").html("© " + (new Date()).getFullYear());</script> <a href="//www.buffalo.edu/">University at Buffalo</a>. All rights reserved. | <a href="//www.buffalo.edu/administrative-services/policy1/ub-policy-lib/privacy.html">Privacy</a> | <a href="//www.buffalo.edu/access/about-us/contact-us.html">Accessibility</a></div></div></div><div class="htmlsnippet section"><div><!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=UA-127757988-27"></script><script>\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag(\'js\', new Date());\n\n gtag(\'config\', \'UA-127757988-27\');\n</script></div></div></div></div><div contenttreeid="footer" contenttreestatus="Not published" style="display:none;"></div></div></footer></body></html>'
%%HTML
<html>
<head>
<style>
.myclass {
color: magenta;
font-weight: 900;
background-color: lime;
}
</style>
</head>
<body>
<h1 style="color:red; font-size:100px;"> Hello! </h1>
<p>This is some text</p>
<p class="myclass"><em>This is another paragraph</em></p>
<p>This is the website of the <a href="http://www.math.buffalo.edu" target="blank_">UB Math Department</a></p>
<h2>List</h2>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h2 class="myclass">Table</h2>
<table>
<tr>
<th>Name</th><th>Score</th><th>Grade</th>
</tr>
<tr>
<td>John</td><td>90</td><td>A</td>
</tr>
<tr>
<td>Mary</td><td>72</td><td>B-</td>
</tr>
<tr>
<td>Bob</td><td>60</td><td>C+</td>
</tr>
</table>
<img src="https://picsum.photos/200" width="400" heigh="300">
</body>
</html>
This is some text
This is another paragraph
This is the website of the UB Math Department
Name | Score | Grade |
---|---|---|
John | 90 | A |
Mary | 72 | B- |
Bob | 60 | C+ |
grads
'<!DOCTYPE HTML><html lang="en" class="ubcms-65"><!-- cmspub06 0314-130808 --><head><link rel="preconnect" href="https://www.googletagmanager.com/" crossorigin/><link rel="dns-prefetch" href="https://www.googletagmanager.com/"/><link rel="dns-prefetch" href="https://connect.facebook.net/"/><link rel="dns-prefetch" href="https://www.google-analytics.com/"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta http-equiv="content-type" content="text/html; charset=UTF-8"/><meta id="meta-viewport" name="viewport" content="width=device-width,initial-scale=1"/><script>if (screen.width > 720 && screen.width < 960) document.getElementById(\'meta-viewport\').setAttribute(\'content\',\'width=960\');</script><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);})(window,document,\'script\',\'dataLayer\',\'GTM-T5KRRKT\');</script><title>Graduate Student Directory - Department of Mathematics - University at Buffalo</title><link rel="canonical" href="https://www.buffalo.edu/cas/math/people/grad-directory.html"/><meta name="date" content="2022-03-01"/><meta property="og:title" content="Graduate Student Directory"/><meta property="og:description" content=" A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z "/><meta property="og:image" content="https://www.buffalo.edu/etc/designs/ubcms/clientlibs-main/images/ub-social.png.img.512.auto.png/1615975618792.png"/><meta property="og:image:alt" content="University at Buffalo"/><meta name="twitter:card" content="summary_large_image"/><meta property="thumbnail" content="https://www.buffalo.edu/cas/math/people/grad-directory/_jcr_content/par/image.img.512.auto.jpg/1629919606956.jpg"/><meta property="thumbnail:alt" content="1. "/><link rel="stylesheet" href="/v-5150cc622c68590719981526ed5c6b25/etc/designs/ubcms/clientlibs-privateauthor.min.5150cc622c68590719981526ed5c6b25.css" type="text/css"><link rel="stylesheet" href="/v-3d5e50c59343478ac1f797325d06d08c/etc/designs/ubcms/clientlibs.min.3d5e50c59343478ac1f797325d06d08c.css" type="text/css"><link type="text/css" rel="stylesheet" href="/v-9cc4b89851550cf5e105d25db85ba3e9/etc/designs/cas/math/css/main.css"/><script src="/v-a83c7a045b4a3c7a9600758298bc4ad8/etc/designs/ubcms/clientlibs-polyfills.min.a83c7a045b4a3c7a9600758298bc4ad8.js" nomodule></script><script src="/etc.clientlibs/clientlibs/granite/jquery.min.cee8557e8779d371fe722bbcdd3b3eb7.js"></script><script src="/v-7cc18f24035dfccf28f4dfe0af578c03/etc/designs/ubcms/clientlibs.min.7cc18f24035dfccf28f4dfe0af578c03.js"></script><style>body.page #page, body.page .page-inner {background-color:#FFFFFF}</style><script>(function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\');ga(\'create\', \'UA-67291618-1\', \'auto\');ga(\'send\', \'pageview\');</script><style>\n img.lazyload,img.lazyloading{position:relative;background:#EEE}\n img.lazyload:before,img.lazyloading:before{content:"";background:#EEE;position:absolute;top:0;left:0;bottom:0;right:0}\n </style></head><body class="contentpage page"><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T5KRRKT" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><nav aria-label="skip to content"><a href="#skip-to-content" id="skip-to-content-link">Skip to Content</a></nav><div></div><div id="page"><div class="page-inner"><div class="page-inner-1"><div class="page-inner-2"><div class="page-inner-2a"></div><div class="page-inner-3"><header><div class="innerheader inheritedreference reference parbase"><div class="headerconfigpage contentpage page basicpage"><div class="par parsys "><div class="alertbanner reference parbase section"><div contenttreeid="alertbanner" contenttreestatus="Not published" style="display:none;"></div><script>jQuery(\'.cap-message\').detach().insertBefore(\'#page\').wrap(\'<section aria-label="UB Alert">\');</script></div><div class="header section"><style>\n .innerheader { padding-top: 158px }\n .header { height: 158px }\n .header .main { height: 134px }\n </style><div><div class="top theme-blue" data-set="header-links"><ul class="school-links"><li><a href="http://arts-sciences.buffalo.edu/">College of Arts and Sciences</a></li></ul><ul class="pervasive-links"><li><a href="//www.buffalo.edu">UB Home</a></li><li><a href="//www.buffalo.edu/maps">Maps</a></li><li><a href="//www.buffalo.edu/directory/">UB Directory</a></li></ul></div><div class="main theme-blue brand-extension lines-1"><div class="lockup"><a href="//www.buffalo.edu"> <i class="icon icon-ub-logo"></i><span class="ada-hidden">University at Buffalo</span> <span class="logo"> <img class="black" src="/v-be9166b6b4a1ea7e5771e2eba1d410cf/etc.clientlibs/wci/components/block/header/clientlibs/resources/ub-logo-black.png" alt="" width="181" height="20"/> </span> </a><div class="mobile-links" data-set="header-links"></div><a class="title" href="/cas/math.html">Department of Mathematics</a></div><div class="social" data-set="headersocial"></div><div class="tasknav" data-set="tasknav"><div class="buttoncomponent sidebyside orange"><a href="http://www.buffalo.edu/ub_admissions/apply-now.html" target="_blank"> Apply to UB </a></div><div class="buttoncomponent sidebyside blue"><a href="http://www.buffalo.edu/cas/math/about-us/contact-us.html"> Contact Us </a></div><div class="buttoncomponent sidebyside green"><a href="https://ubfoundation.buffalo.edu/giving/?gift_allocation=01-3-0-01240" target="_blank"> Support UB Math </a></div></div></div></div></div><div class="reference parbase section"><div class="unstructuredpage page basicpage"><div class="par parsys "><div class="list parbase section"><div id="ubcms-gen-263326505" data-columnize-row="1"><ul class="list-style-detail" data-columnize="1"><li><div class="long-term-alert-banner"><div class="text parbase section"><p><b>COVID-19 UPDATES • 3/4/2022</b></p><ul><li><a href="/coronavirus/latest-update.html">UB lifts vaccination policy for campus events</a></li></ul></div></div></li></ul></div><script>\n UBCMS.list.listlimit(\'ubcms\\u002Dgen\\u002D263326505\', \'100\',\n \'100\');\n </script></div><script>UBCMS.longTermAlert.init()\n</script></div></div><div contenttreeid="reference" contenttreestatus="Not published" style="display:none;"></div></div><div class="mobilemenu section"><!--noindex--><nav aria-label="mobile navigation menu"><ul><li class="mobileheader-button-menu" style="display: none"><a href="#">Menu</a></li><li class="mobileheader-button-search" style="display: none"><a href="#">Search</a></li></ul></nav><!--endnoindex--><div id="mobile-search" class="menu"><div id="mobile-search-inner" class="menu-inner" data-set="mobile-search"></div></div><div id="mobile-menu" class="menu"><div class="menu-inner"><div id="mobile-menu-inner"><div class="loading"><!--noindex-->Loading menu...<!--endnoindex--></div></div><div class="tasknav" data-set="tasknav"></div><div class="headersocial" data-set="headersocial"></div></div></div><script>\n jQuery(\'.mobileheader-button-menu\').removeAttr(\'style\');\n jQuery(document).ready(function() {\n if ($(\'.topnav .search .search-content\').length > 0) {\n $(\'.mobileheader-button-search\').removeAttr(\'style\');\n }\n });\n UBCMS.rwd.mobileMenu.load(\'\\/content\\/cas\\/math\\/jcr:content.nav.html\', \'https:\\/\\/www.buffalo.edu\\/cas\\/math\\/people\\/grad-directory.html\');\n</script></div><div class="topnav section"><nav class="topnav-inner" aria-label="site navigation"><div class="main"><ul class="menu"><li class="first theme-secondary theme-standard-gray"><a id="ubcms-gen-263326511" aria-haspopup="true" href="/cas/math/about-us.html"><span class="container">About</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326511"><ul class="submenu clearfix"><li class="first"><a aria-label="About:Why Choose Us?" href="/cas/math/about-us/why-choose.html">Why Choose Us?</a></li><li><a aria-label="About:Our Mission" href="/cas/math/about-us/our-mission.html">Our Mission</a></li><li><a aria-label="About:Our Alumni, Students, and Faculty" href="/cas/math/about-us/our-alumni.html">Our Alumni, Students, and Faculty</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Our Alumni, Students, and Faculty:Our Alumni" href="/cas/math/about-us/our-alumni/our-alumni.html">Our Alumni</a></li><li><a aria-label="Our Alumni, Students, and Faculty:Our Students" href="/cas/math/about-us/our-alumni/our-students.html">Our Students</a></li><li class="last"><a aria-label="Our Alumni, Students, and Faculty:Our Faculty" href="/cas/math/about-us/our-alumni/our-faculty.html">Our Faculty</a></li></ul></div></li><li><a aria-label="About:Memberships" href="/cas/math/about-us/memberships.html">Memberships</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Memberships:American Mathematical Society" href="/cas/math/about-us/memberships/AMS.html">American Mathematical Society</a></li><li><a aria-label="Memberships:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li><li class="last"><a aria-label="Memberships:Mathematical Sciences Research Institute" href="/cas/math/about-us/memberships/MSRI.html">Mathematical Sciences Research Institute</a></li></ul></div></li><li><a aria-label="About:Mathematicians of the African Diaspora" href="/cas/math/about-us/mathematicians-of-the-african-diaspora.html">Mathematicians of the African Diaspora</a></li><li><a aria-label="About:About the University" href="/cas/math/about-us/about-the-university.html">About the University</a></li><li><a aria-label="About:About Buffalo-Niagara" href="/cas/math/about-us/the-buffalo-niagara-region.html">About Buffalo-Niagara</a></li><li><a aria-label="About:Visiting UB" href="/cas/math/news-events/visiting.html">Visiting UB</a></li><li class="last"><a aria-label="About:Contact Us" href="/cas/math/about-us/contact-us.html">Contact Us</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray active-trail"><a id="ubcms-gen-263326519" aria-haspopup="true" href="/cas/math/people.html"><span class="container">People</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326519"><ul class="submenu clearfix"><li class="first"><a aria-label="People:Faculty" href="/cas/math/people/faculty.html">Faculty</a></li><li><a aria-label="People:Staff" href="/cas/math/people/staff_directory.html">Staff</a></li><li><a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html">Emeriti Faculty</a></li><li><a aria-label="People:Instructors" href="/cas/math/people/instructors.html">Instructors</a></li><li><a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html">Visiting Scholars</a></li><li class="active-trail"><a class="active" aria-label="People:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></li><li class="last"><a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html">Alumni</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li><a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li><li class="last"><a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to Present</a></li></ul></div></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-263326525" aria-haspopup="true" href="/cas/math/research.html"><span class="container">Research</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326525"><ul class="submenu clearfix"><li class="first"><a aria-label="Research:Algebra" href="/cas/math/research/algebra.html">Algebra</a></li><li><a aria-label="Research:Analysis" href="/cas/math/research/analysis.html">Analysis</a></li><li><a aria-label="Research:Applied Mathematics" href="/cas/math/research/applied-mathematics.html">Applied Mathematics</a></li><li><a aria-label="Research:Geometry and Topology " href="/cas/math/research/geometry-topology.html">Geometry and Topology </a></li><li class="last"><a aria-label="Research:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html">Undergraduate Research</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-263326532" aria-haspopup="true" href="/cas/math/ug.html"><span class="container">Undergraduate</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326532"><ul class="submenu clearfix"><li class="first"><a aria-label="Undergraduate:Undergraduate Programs" href="/cas/math/ug/undergraduate-programs.html">Undergraduate Programs</a></li><li><a aria-label="Undergraduate:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html">Undergraduate Research</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Undergraduate Research:Special Research Projects" href="/cas/math/ug/undergraduate-research/special-projects.html">Special Research Projects</a></li><li class="last"><a aria-label="Undergraduate Research:Summer Math Scholarship" href="/cas/math/ug/undergraduate-research/summer.html">Summer Math Scholarship</a></li></ul></div></li><li><a aria-label="Undergraduate:Honors, Awards, and Scholarships" href="/cas/math/ug/honors--awards--and-scholarships.html">Honors, Awards, and Scholarships</a></li><li><a aria-label="Undergraduate:Undergraduate Courses" href="/cas/math/ug/ug-courses.html">Undergraduate Courses</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Undergraduate Courses:Sample Syllabi" href="/cas/math/ug/ug-courses/syllabi.html">Sample Syllabi</a></li><li><a aria-label="Undergraduate Courses:MTH 121 and 122 Textbook" href="/cas/math/ug/ug-courses/mth121-122-textbook.html">MTH 121 and 122 Textbook</a></li><li class="last"><a aria-label="Undergraduate Courses:MTH 306 Textbook" href="/cas/math/ug/ug-courses/mth-306-textbook.html">MTH 306 Textbook</a></li></ul></div></li><li><a aria-label="Undergraduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home">Directed Reading Program</a></li><li><a aria-label="Undergraduate:Mathematics Resources" href="/cas/math/ug/resources.html">Mathematics Resources</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Mathematics Resources:Mathematics Placement Exam" href="/cas/math/ug/resources/mathplacement.html">Mathematics Placement Exam</a></li><li><a aria-label="Mathematics Resources:Mathematics Placement Exam Frequently Asked Questions" href="/cas/math/ug/resources/MPEFAQ.html">Mathematics Placement Exam Frequently Asked Questions</a></li><li class="last"><a aria-label="Mathematics Resources:Force Registration" href="/cas/math/ug/resources/force-registration.html">Force Registration</a></li></ul></div></li><li><a aria-label="Undergraduate:Mathematics Help Center" href="/cas/math/ug/help-center.html">Mathematics Help Center</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first last"><a aria-label="Mathematics Help Center:Online Help Sessions" href="/content/cas/math/ug/help-center/zoom-pw.html">Online Help Sessions</a></li></ul></div></li><li class="last"><a aria-label="Undergraduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-263326542" aria-haspopup="true" href="/cas/math/grad.html"><span class="container">Graduate</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326542"><ul class="submenu clearfix"><li class="first"><a aria-label="Graduate:Master\'s Program" href="/cas/math/grad/master-program.html">Master\'s Program</a></li><li><a aria-label="Graduate:Doctoral Program (PhD)" href="/cas/math/grad/doctoral-program.html">Doctoral Program (PhD)</a></li><li><a aria-label="Graduate:Request Information" href="/cas/math/grad/request-information.html">Request Information</a></li><li><a aria-label="Graduate:Admissions" href="/cas/math/grad/grad-admissions.html">Admissions</a></li><li><a aria-label="Graduate:Courses" href="/cas/math/grad/grad-courses.html">Courses</a></li><li><a aria-label="Graduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home">Directed Reading Program</a></li><li><a aria-label="Graduate:Graduate Research" href="/cas/math/grad/grad-research.html">Graduate Research</a></li><li><a aria-label="Graduate:Fellowships, Scholarships, Awards" href="/cas/math/grad/fellowships-awards.html">Fellowships, Scholarships, Awards</a></li><li><a aria-label="Graduate:PhD Recipients, 2010 to present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to present</a></li><li><a aria-label="Graduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li><li><a aria-label="Graduate:Graduate Student Lecture Series" href="/cas/math/grad/gsls.html">Graduate Student Lecture Series</a></li><li class="last active-trail"><a aria-label="Graduate:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-263326552" aria-haspopup="true" href="/cas/math/courses.html"><span class="container">Courses</span></a></li><li class="last theme-secondary theme-standard-gray"><a id="ubcms-gen-263326553" aria-haspopup="true" href="/cas/math/news-events/news.html"><span class="container">News & Events</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-263326553"><ul class="submenu clearfix"><li class="first"><a aria-label="News & Events:News" href="/cas/math/news-events/news.html">News</a></li><li><a aria-label="News & Events:Events " href="/cas/math/news-events/calendar.html">Events </a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Events :Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li class="last"><a aria-label="Events :Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li></ul></div></li><li><a aria-label="News & Events:Myhill Lecture Series" href="/cas/math/news-events/myhill.html">Myhill Lecture Series</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Myhill Lecture Series:Laura DeMarco, 2019" href="/cas/math/news-events/myhill/laura-demarco.html">Laura DeMarco, 2019</a></li><li><a aria-label="Myhill Lecture Series:Mark Newman, 2018" href="/cas/math/news-events/myhill/mark-newman.html">Mark Newman, 2018</a></li><li><a aria-label="Myhill Lecture Series:Guoliang Yu, 2017" href="/cas/math/news-events/myhill/guoliangyu.html">Guoliang Yu, 2017</a></li><li><a aria-label="Myhill Lecture Series:Gopal Prasad, 2016" href="/cas/math/news-events/myhill/gopal-prasad.html">Gopal Prasad, 2016</a></li><li><a aria-label="Myhill Lecture Series:Ciprian Manolescu, 2015" href="/cas/math/news-events/myhill/ciprian-manolescu.html">Ciprian Manolescu, 2015</a></li><li><a aria-label="Myhill Lecture Series:Percy A. Deift, 2014" href="/cas/math/news-events/myhill/percy-deift.html">Percy A. Deift, 2014</a></li><li class="last"><a aria-label="Myhill Lecture Series:Peter Sarnak, 2013" href="/cas/math/news-events/myhill/peter-sarnak.html">Peter Sarnak, 2013</a></li></ul></div></li><li><a aria-label="News & Events:NERCCS 2020" href="/cas/math/news-events/nerccs-2020.html">NERCCS 2020</a></li><li><a aria-label="News & Events:News & Events Archive" href="/cas/math/news-events/archives.html">News & Events Archive</a></li><li class="last"><a aria-label="News & Events:Visiting UB" href="/cas/math/news-events/visiting.html">Visiting UB</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li></ul></div><div class="right"><div class="search"><!--noindex--><div class="search-menu" tabindex="0"><div class="search-label">Search</div><!-- Uses appendAround.js script to transfer this search form to mobile nav menu via data-set attribute. --><div class="search-content" data-set="mobile-search"><form class="search-form" method="GET" action="/cas/math/searchresults.html" onsubmit="return this.q.value != \'\'"><div class="search-container" role="search"><input autocomplete="off" id="ubcms-gen-263326561" class="search-input" name="q" type="text" placeholder="Search" aria-label="Search"/> <button class="search-submit" type="submit" value="Search" aria-label="Search"></button></div></form></div></div><!--endnoindex--></div><div class="audiencenav list parbase"><div tabindex="0" class="audiencenav-wrapper"><div class="label">Info For</div><ul><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/information-for-students.html"> Current Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/ug/undergraduate-programs.html"> Future Undergraduate Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/grad.html"> Future Graduate Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/information-for-faculty-staff.html"> Faculty & Staff </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/people/alumni-friends.html"> Alumni & Friends </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> Diversity, Equity, and Inclusive Excellence Resources </a></li></ul></div></div></div></nav><script>$(".topnav").accessibleDropDown();</script></div></div></div><div contenttreeid="innerheader" contenttreestatus="Not published" style="display:none;"></div></div></header><div id="columns" class="two-column clearfix"><div class="columns-bg columns-bg-1"><div class="columns-bg columns-bg-2"><div class="columns-bg columns-bg-3"><div class="columns-bg columns-bg-4"><div id="left"><div class="leftnav"><nav class="inner" aria-label="section navigation"><div class="title"><a href="/cas/math/people.html"><span class="title">People</span></a></div><ul class="menu nav-level-1"><li class="first"><a aria-label="People:Faculty" href="/cas/math/people/faculty.html">Faculty</a></li><li><a aria-label="People:Staff" href="/cas/math/people/staff_directory.html">Staff</a></li><li><a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html">Emeriti Faculty</a></li><li><a aria-label="People:Instructors" href="/cas/math/people/instructors.html">Instructors</a></li><li><a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html">Visiting Scholars</a></li><li class="active-trail"><span><a class="active" aria-label="People:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></span></li><li class="last expand-submenu"><a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html">Alumni</a><ul class="menu nav-level-2"><li class="first expand-submenu"><a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li class="expand-submenu"><a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li><li class="last expand-submenu"><a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to Present</a></li></ul></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></nav></div><div class="mobile-left-col hide-in-narrow" data-set="mobile-center-bottom-or-right-top"><div class="leftcol parsys iparsys" role="complementary"><div class="section"><div class="new"></div></div><div class="iparys_inherited"><div class="leftcol iparsys parsys"><div class="flexmodule imagebase section"><div id="ubcms-gen-263326568" class="flexmodule-inner "><div class="title"><h2>Diversity, Equity, and Inclusive Excellence Resources</h2></div><div class="teaser teaser-block flexmodule-style flexmodule-style-largeimg"><div class="teaser-inner"><div class="teaser-images"><div class="teaser-image"><a href="http://www.buffalo.edu/inclusion/resources/IXResources.html" target="_blank"><noscript><picture contenttreeid=\'flexmodule\' contenttreestatus=\'Not published\'><source type="image/png" media="(max-width: 568px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x"><source type="image/png" media="(max-width: 720px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png"><source type="image/png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"><img height="131" alt="Diversity, Equity, and Inclusive Excellence Resources. " width="209" class="img-209 img-209x131 cq-dd-image" src="/content/cas/math/people/_jcr_content/leftcol/flexmodule.img.209.131.png/1607108331977.png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"></picture></noscript><picture class="no-display" contenttreeid=\'flexmodule\' contenttreestatus=\'Not published\'><source type="image/png" media="(max-width: 568px)" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x"><source type="image/png" media="(max-width: 720px)" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png"><source type="image/png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"><img height="131" alt="Diversity, Equity, and Inclusive Excellence Resources. " width="209" class="img-209 img-209x131 cq-dd-image lazyload" data-src="/content/cas/math/people/jcr%3acontent/leftcol/flexmodule.img.209.131.png/1607108331977.png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></a></div></div><div class="teaser-content"><div class="teaser-body"><p>UB is committed to achieving inclusive excellence in a deliberate, intentional and coordinated fashion, embedding it in every aspect of our operations. We aspire to foster a healthy, productive, ethical, fair, and affirming campus community to allow all students, faculty and staff to thrive and realize their full potential. <br/></p></div><div class="teaser-links"><div class="list"><div id="ubcms-gen-263326569" data-columnize-row="1"><ul class="link-list" data-columnize="1"><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/promoting-equal-employment-opportunity-and-diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Promoting Equal Employment Opportunity and Diversity</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Inclusive Excellence Resources</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/toolkits_trainings.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Toolkits</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/studentlife/who-we-are/departments/diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">UB Intercultural and Diversity Center</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/diversity-innovation.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">UB Center for Diversity Innovation</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/external-resources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">External Resources</span> </span> </a> </span></li></ul></div><div class="clearfix"></div><script>\n UBCMS.list.listlimit(\'ubcms\\u002Dgen\\u002D263326569\', \'100\',\n \'100\');\n </script></div></div></div></div><div class="teaser-clear"></div></div></div><div class="flexmodule-clear"></div></div></div></div></div></div></div><script>\n (function() {\n var $firstLeftIparsysInherited = $(\'#left .iparys_inherited\').eq(0);\n var $firstLeftIparsysSection = $(\'#left > .iparsys:first-child > .section:first-child\');\n var $mcbort = $(\'.mobile-center-bottom-or-right-top\');\n\n if ($firstLeftIparsysInherited.length && $firstLeftIparsysInherited.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $firstLeftIparsysInherited.addClass(\'empty\');\n \n if ($firstLeftIparsysSection.length && $firstLeftIparsysSection.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $firstLeftIparsysSection.addClass(\'empty\');\n \n if ($mcbort.length && $mcbort.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $mcbort.addClass(\'empty\');\n\n $(\'[role=complementary]\').each(function() {\n var $this = $(this);\n if ($this.children().filter(\':not(.empty)\').filter(\':not(:empty)\').length === 0)\n $this.removeAttr(\'role\');\n });\n\n if ($(\'.leftcol[role=complementary]\').length > 0 && $(\'#right[role=complementary]\').length > 0) {\n $(\'.leftcol[role=complementary]\').attr(\'aria-label\', \'left column\');\n $(\'#right[role=complementary]\').attr(\'aria-label\', \'right column\');\n }\n })();\n </script><div id="skip-to-content"></div><div id="center" role="main"><div class="mobile-content-top" data-set="content-top"></div><div class="par parsys"><div class="title section"><h1 onpaste="onPasteFilterPlainText(event)" id="title"> Graduate Student Directory </h1></div><div class="image-container image-container-680"><div class="image border-hide"><noscript><picture contenttreeid=\'image\' contenttreestatus=\'Not published\'><source type="image/jpeg" media="(max-width: 568px)" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.448.auto.m.q50.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.576.auto.m.q50.jpg/1629919606956.jpg 2x"><source type="image/jpeg" media="(max-width: 720px)" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.688.auto.q80.jpg/1629919606956.jpg"><source type="image/jpeg" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.680.auto.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"><img alt="1. " width="680" class="img-680 cq-dd-image" src="/content/cas/math/people/grad-directory/_jcr_content/par/image.img.680.auto.jpg/1629919606956.jpg" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'image\' contenttreestatus=\'Not published\'><source type="image/jpeg" media="(max-width: 568px)" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.448.auto.m.q50.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.576.auto.m.q50.jpg/1629919606956.jpg 2x"><source type="image/jpeg" media="(max-width: 720px)" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.688.auto.q80.jpg/1629919606956.jpg"><source type="image/jpeg" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.680.auto.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"><img alt="1. " width="680" class="img-680 cq-dd-image lazyload" data-src="/content/cas/math/people/grad-directory/jcr%3acontent/par/image.img.680.auto.jpg/1629919606956.jpg" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script><!-- <span data-sly-test="false" class="aria-hidden"></span> --></div></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="top"> Mathematics Graduate Student Directory 2021-2022 </h2></div><div class="introtext text parbase section"><p><a href="#letter_a">A</a> | <a href="#letter_b">B</a> | <a href="#letter_c">C</a> | <a href="#letter_d">D</a> | E | <a href="#letter_f">F</a> | <a href="#letter_g">G</a> | <a href="#letter_h">H</a> | I | <a href="#letter_j">J</a> | <a href="#letter_h">K</a> | <a href="#letter_l">L</a> | <a href="#letter_m">M</a> | <a href="#letter_n">N</a> | <a href="#letter_o">O</a> | <a href="#letter_p">P</a> | Q | <a href="#letter_r">R</a> | <a href="#letter_s">S</a> | <a href="#letter_t">T</a> | <a href="#letter_u">U</a> | <a href="#letter_v">V</a> | <a href="#letter_w">W</a> | <a href="#letter_x">X</a> | <a href="#letter_y">Y</a> | <a href="#letter_z">Z</a></p></div><div class="hr hrline" style="clear:left"></div><div class="text parbase section"><p><i>Offices as listed are in the Mathematics Building, North Campus.</i></p></div><div class="hr hrline" style="clear:left"></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="title_3"> A </h2></div><div class="text parbase section"><p><b>Abeya Ranasinghe Mudiyanselage, Asela V.</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:aselavir@buffalo.edu">aselavir@buffalo.edu</a></p><p><b>Ahn, Min Woong</b><br/> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:minwoong@buffalo.edu">minwoong@buffalo.edu</a></p><p><b>Alegria, Linda</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:lindaale@buffalo.edu">lindaale@buffalo.edu</a><br/></p></div><div class="hr hrline" style="clear:left"></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_b"> B </h2></div><div class="text parbase section"><p><b>Betz, Katherine</b><br/> Office: 132 Phone: 645-8820<br/> Email: <a href="mailto:kbetz2@buffalo.edu">kbetz2@buffalo.edu</a></p><p><b>Bhaumik, Jnanajyoti</b><br/> Office: 129 Mathematics Building<br/> Phone: 645-8817<br/> Email: <a href="mailto:jnanajyo@buffalo.edu">jnanajyo@buffalo.edu</a></p><p> </p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="hr hrline" style="clear:left"></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_c"> C </h2></div><div class="text parbase section"><p><b>Cain Charles</b><br/> Email: <a href="mailto:ccain2@buffalo.edu">ccain2@buffalo.edu</a></p><p><b>Casper, Michael<br/> </b> Office: 222 Phone: 645-8779<br/> Email: <a href="mailto:mjcasper@buffalo.edu">mjcasper@buffalo.edu</a></p><p><b>Chang, Hong<br/> </b> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:hchang24@buffalo.edu">hchang24@buffalo.edu</a></p><p><b>Chen, Yen-Lin<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:yenlinch@buffalo.edu">yenlinch@buffalo.edu</a><br/></p><p><b>Cheuk, Ka Yue<br/> </b> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:kayueche@buffalo.edu">kayueche@buffalo.edu</a></p><p><b>Cosgrove, Gage (Makenzie)<br/> </b> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:gagecosg@buffalo.edu">gagecosg@buffalo.edu</a></p><p> </p></div><div class="hr hrline" style="clear:left"></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_d"> D </h2></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_e"> E </h2></div><div class="text parbase section"><p><b>Engelhardt, Carolyn<br/> </b> Email: <a href="mailto:cengelha@buffalo.edu">cengelha@buffalo.edu</a><br/></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_f"> F </h2></div><div class="text parbase section"><p><b>Fonseca dos Reis, Elohim<br/> </b> Office: 313 Phone: 645-8804<br/> Email: <a href="mailto:elohimfo@buffalo.edu">elohimfo@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_g"> G </h2></div><div class="text parbase section"><p><b>Gkogkou, Aikaterini</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:agkogkou@buffalo.edu">agkogkou@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_h"> H </h2></div><div class="text parbase section"><p><b>Haverlick, Justin<br/> </b> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:jmhaverl@buffalo.edu">jmhaverl@buffalo.edu</a></p><p><b>Herron, Amy</b><br/> Office: 135 <br/> Email: <a href="mailto:ajherron@buffalo.edu">ajherron@buffalo.edu</a></p><p><b>Hovland, Seth</b><br/> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:sethhovl@buffalo.edu">sethhovl@buffalo.edu</a></p><p><b>Hung, Tsz Fun</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:tszfunhu@buffalo.edu">tszfunhu@buffalo.edu</a></p><p><b>Hutchings, Raymond</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:rhhutchi@buffalo.edu">rhhutchi@buffalo.edu</a></p><p><b>Huynh, Bao<br/> </b> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:baohuynh@buffalo.edu">baohuynh@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_j"> J </h2></div><div class="text parbase section"><p><b>Jeong, Myeongjin<br/> </b> Office: 244<br/> Email:<a href="mailto:mjeong31@buffalo.edu">mjeong31@buffalo.edu</a></p><p><b>Jones, Raymond</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:rpjones2@buffalo.edu">rpjones2@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_k"> K </h2></div><div class="text parbase section"><p><b>Kilic, Bengier Ulgen<br/> </b> Office: 106 Phone: 645-8763<br/> Email: <a href="mailto:bengieru@buffalo.edu">bengieru@buffalo.edu</a></p><p><b>Kim, Jiseong<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:jiseongk@buffalo.edu">jiseongk@buffalo.edu</a></p><p><b>Kireyev, Dmitri</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:dmitriki@buffalo.edu">dmitriki@buffalo.edu</a><br/></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_l"> L </h2></div><div class="text parbase section"><p><b>Le, Minh Quang</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:minhquan@buffalo.edu">minhquan@buffalo.edu</a></p><p><b>Leonard, Dakota</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:dl42@buffalo.edu">dl42@buffalo.edu</a></p><p><b>Liao, Chang-Chih</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:cliao9@buffalo.edu">cliao9@buffalo.edu</a></p><p><b>Liao, Yanzhan</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:yanzhanl@buffalo.edu">yanzhanl@buffalo.edu</a></p><p><b>Liu, Ruodan</b><br/> Office: 135 Phone: 645-8832<br/> Email: <a href="mailto:rliu8@buffalo.edu">rliu8@buffalo.edu</a></p><p><b>Liu,Tianmou<br/> </b> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:tianmoul@buffalo.edu">tianmoul@buffalo.edu</a></p><p><b>Liu, Yuan</b><br/> Office: 135 Phone: 645-8832<br/> Email: <a href="mailto:yuanliu@buffalo.edu">yuanliu@buffalo.edu</a></p><p> </p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_m"> M </h2></div><div class="text parbase section"><p><b>Ma, Ning<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:nma22@buffalo.edu">nma22@buffalo.edu</a><br/></p><p><b>Ma, Renda<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:rendama@buffalo.edu">rendama@buffalo.edu</a></p><p><b>Ma, Yuqing</b><br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:yuqingma@buffalo.edu">yuqingma@buffalo.edu</a></p><p><b>Meng, Lingqi<br/> </b> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:lingqime@buffalo.edu">lingqime@buffalo.edu</a></p><p><b>Meyer, Drew</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:drewmeye@buffalo.edu">drewmeye@buffalo.edu</a></p><p><b>Montoro, Michael<br/> </b> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:mnmontor@buffalo.edu">mnmontor@buffalo.edu</a></p><p><b>Moore, Robert</b><br/> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:rcmoore@buffalo.edu">rcmoore@buffalo.edu</a><br/></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_n"> N </h2></div><div class="text parbase section"><p><b>Nguyen, Khanh Truong</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:kn55@buffalo.edu">kn55@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_o"> O </h2></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_p"> P </h2></div><div class="text parbase section"><p><b>Peng, Jun</b><br/> Office: 139 Phone: 645-8824<b><br/> </b> Email: <a href="mailto:jpeng3@buffalo.edu">jpeng3@buffalo.edu</a></p><p><b>Poste, Alex</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:apposte@buffalo.edu">apposte@buffalo.edu</a></p><p> </p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_r"> R </h2></div><div class="text parbase section"><p><b>Rantanen, Matthew<br/> </b> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:mattrant@buffalo.edu">mattrant@buffalo.edu</a></p><p><b>Rele, Adhish</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:adhishpr@buffalo.edu">adhishpr@buffalo.edu</a></p><p><b>Russell, Madison</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:merussel@buffalo.edu">merussel@buffalo.edu</a></p><p><b>Rozwood, Bud<br/> </b> Office: 125 Phone: 645-8815<b><br/> </b> Email: <a href="mailto:budrozwo@buffalo.edu">budrozwo@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_s"> S </h2></div><div class="text parbase section"><p><b>Sarkar, Sayantan<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:sayantan@buffalo.edu">sayantan@buffalo.edu</a></p><p><b>Sharma, Abhishek<br/> </b> Office: 126 Phone: 645-8816<br/> Email: aks28<a href="mailto:sayantan@buffalo.edu">@buffalo.edu</a></p><p><b>Sicuso, Luca</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:lucasicu@buffalo.edu">lucasicu@buffalo.edu</a></p><p><b>Solanki, Deepisha</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:deepisha@buffalo.edu">deepisha@buffalo.edu</a></p><p><b>Som, Bratati<br/> </b> Office: 132 Phone: 645-8820<br/> Email: <a href="mailto:bratatis@buffalo.edu">bratatis@buffalo.edu</a></p><p><b>Song, Zhao<br/> </b> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:zhaosong@buffalo.edu">zhaosong@buffalo.edu</a></p><p><b>Sullivan, Mark</b><br/> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:marksull@buffalo.edu">marksull@buffalo.edu</a></p><p><b>Sun, Yuxun</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:yuxunsun@buffalo.edu">yuxunsun@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_t"> T </h2></div><div class="text parbase section"><p><b>Thongprayoon, Chanon</b><br/> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:chanonth@buffalo.edu">chanonth@buffalo.edu</a><br/> <br/> <br/></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_u"> U </h2></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_v"> V </h2></div><div class="text parbase section"><p><b>Vadnere, Arya Abhijeet</b><br/> Office: 132 Mathematics Building<br/> Phone: 645-8820<br/> Email: <a href="mailto:aryaabhi@buffalo.edu">aryaabhi@buffalo.edu</a></p><p><b>Vinal, Gregory<br/> </b> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:chanonth@buffalo.edu">gregoryv@buffalo.edu</a></p><p> </p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_w"> W </h2></div><div class="text parbase section"><p><b>Wang, Daxun<br/> </b>Office: 141 Phone: 645-8825<br/> Email: <a href="mailto:daxunwan@buffalo.edu">daxunwan@buffalo.edu</a></p><p><b>Wang, Shiruo<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:bwang32@buffalo.edu">shiruowa@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_y"> Y </h2></div><div class="text parbase section"><p><b>Yuan, Cheng</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:chengyua@buffalo.edu">chengyua@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_z"> Z </h2></div><div class="text parbase section"><p><b>Zhang, Baoming</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:baomingz@buffalo.edu">baomingz@buffalo.edu</a></p><p><b>Zhao, Bojun</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:bojunzha@buffalo.edu">bojunzha@buffalo.edu</a></p><p><b>Ziegler, Cameron</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:cz22@buffalo.edu">cz22@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div></div><div class="mobile-content-bottom" data-set="content-bottom"></div><div class="mobile-center-or-right-bottom" data-set="center-or-right-bottom"></div><div class="mobile-center-bottom-or-right-top" data-set="mobile-center-bottom-or-right-top"></div></div></div></div></div></div></div></div></div></div></div></div><footer><div class="footer inheritedreference reference parbase"><div class="footerconfigpage contentpage page basicpage"><div class="par parsys "><div class="htmlsnippet section"><div><style type="text/css">\n\n @only screen and (max-width: 720px){\n \n .simplefooter .simplefootercontents > .copyright {\n clear: both;\n position: relative;\n top: 7px;\n }\n }\n</style></div></div><div class="fatfooter section"><div class="footer-mode-simple clearfix"><a class="ub-logo-link" href="//www.buffalo.edu/"> <img class="ub-logo" src="/v-e541efb31faa2518c910054a542e1234/etc.clientlibs/wci/components/block/fatfooter/clientlibs/resources/ub-logo-175-years.png" alt="University at Buffalo The State University of New York - 175 Years: 1846-2021" width="400"/> </a><div class="footer-columns footer-columns-1"><div class="footer-column footer-column-1"><div class="col1 parsys"><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="title-1"> <a href="/cas/math.html">Department of Mathematics</a> </h2></div><div class="text parbase section"><p>244 Mathematics Building<br/> Buffalo, NY 14260-2900<br/> Phone: (716) 645-6284<br/> Fax: (716) 645-5039</p></div><div class="reference parbase section"><div class="unstructuredpage page basicpage"><div class="par parsys "><div class="hr hrline" style="clear:left"></div><div class="captiontext text parbase section"><p><b>About Our Photos and Videos:</b> Some photos or videos that appear on this site may have been taken prior to the COVID-19 pandemic and therefore may not accurately reflect current operations or adherence to <a href="https://www.buffalo.edu/coronavirus/health-and-safety.html" target="_blank">UB’s Health and Safety Guidelines</a>.<br/></p></div></div></div><div contenttreeid="reference-1" contenttreestatus="Not published" style="display:none;"></div></div></div></div></div><div class="copyright"><span class="copy"></span><script>jQuery(".copyright .copy").html("© " + (new Date()).getFullYear());</script> <a href="//www.buffalo.edu/">University at Buffalo</a>. All rights reserved. | <a href="//www.buffalo.edu/administrative-services/policy1/ub-policy-lib/privacy.html">Privacy</a> | <a href="//www.buffalo.edu/access/about-us/contact-us.html">Accessibility</a></div></div></div><div class="htmlsnippet section"><div><!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=UA-127757988-27"></script><script>\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag(\'js\', new Date());\n\n gtag(\'config\', \'UA-127757988-27\');\n</script></div></div></div></div><div contenttreeid="footer" contenttreestatus="Not published" style="display:none;"></div></div></footer></body></html>'
from bs4 import BeautifulSoup
soup = BeautifulSoup(grads)
print(soup.prettify())
<!DOCTYPE HTML> <html class="ubcms-65" lang="en"> <!-- cmspub06 0314-130808 --> <head> <link crossorigin="" href="https://www.googletagmanager.com/" rel="preconnect"/> <link href="https://www.googletagmanager.com/" rel="dns-prefetch"/> <link href="https://connect.facebook.net/" rel="dns-prefetch"/> <link href="https://www.google-analytics.com/" rel="dns-prefetch"/> <meta content="IE=edge" http-equiv="X-UA-Compatible"/> <meta content="text/html; charset=utf-8" http-equiv="content-type"/> <meta content="width=device-width,initial-scale=1" id="meta-viewport" name="viewport"/> <script> if (screen.width > 720 && screen.width < 960) document.getElementById('meta-viewport').setAttribute('content','width=960'); </script> <script> (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-T5KRRKT'); </script> <title> Graduate Student Directory - Department of Mathematics - University at Buffalo </title> <link href="https://www.buffalo.edu/cas/math/people/grad-directory.html" rel="canonical"/> <meta content="2022-03-01" name="date"/> <meta content="Graduate Student Directory" property="og:title"/> <meta content=" A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z " property="og:description"/> <meta content="https://www.buffalo.edu/etc/designs/ubcms/clientlibs-main/images/ub-social.png.img.512.auto.png/1615975618792.png" property="og:image"/> <meta content="University at Buffalo" property="og:image:alt"/> <meta content="summary_large_image" name="twitter:card"/> <meta content="https://www.buffalo.edu/cas/math/people/grad-directory/_jcr_content/par/image.img.512.auto.jpg/1629919606956.jpg" property="thumbnail"/> <meta content="1. " property="thumbnail:alt"/> <link href="/v-5150cc622c68590719981526ed5c6b25/etc/designs/ubcms/clientlibs-privateauthor.min.5150cc622c68590719981526ed5c6b25.css" rel="stylesheet" type="text/css"/> <link href="/v-3d5e50c59343478ac1f797325d06d08c/etc/designs/ubcms/clientlibs.min.3d5e50c59343478ac1f797325d06d08c.css" rel="stylesheet" type="text/css"/> <link href="/v-9cc4b89851550cf5e105d25db85ba3e9/etc/designs/cas/math/css/main.css" rel="stylesheet" type="text/css"/> <script nomodule="" src="/v-a83c7a045b4a3c7a9600758298bc4ad8/etc/designs/ubcms/clientlibs-polyfills.min.a83c7a045b4a3c7a9600758298bc4ad8.js"> </script> <script src="/etc.clientlibs/clientlibs/granite/jquery.min.cee8557e8779d371fe722bbcdd3b3eb7.js"> </script> <script src="/v-7cc18f24035dfccf28f4dfe0af578c03/etc/designs/ubcms/clientlibs.min.7cc18f24035dfccf28f4dfe0af578c03.js"> </script> <style> body.page #page, body.page .page-inner {background-color:#FFFFFF} </style> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-67291618-1', 'auto');ga('send', 'pageview'); </script> <style> img.lazyload,img.lazyloading{position:relative;background:#EEE} img.lazyload:before,img.lazyloading:before{content:"";background:#EEE;position:absolute;top:0;left:0;bottom:0;right:0} </style> </head> <body class="contentpage page"> <noscript> <iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-T5KRRKT" style="display:none;visibility:hidden" width="0"> </iframe> </noscript> <nav aria-label="skip to content"> <a href="#skip-to-content" id="skip-to-content-link"> Skip to Content </a> </nav> <div> </div> <div id="page"> <div class="page-inner"> <div class="page-inner-1"> <div class="page-inner-2"> <div class="page-inner-2a"> </div> <div class="page-inner-3"> <header> <div class="innerheader inheritedreference reference parbase"> <div class="headerconfigpage contentpage page basicpage"> <div class="par parsys"> <div class="alertbanner reference parbase section"> <div contenttreeid="alertbanner" contenttreestatus="Not published" style="display:none;"> </div> <script> jQuery('.cap-message').detach().insertBefore('#page').wrap('<section aria-label="UB Alert">'); </script> </div> <div class="header section"> <style> .innerheader { padding-top: 158px } .header { height: 158px } .header .main { height: 134px } </style> <div> <div class="top theme-blue" data-set="header-links"> <ul class="school-links"> <li> <a href="http://arts-sciences.buffalo.edu/"> College of Arts and Sciences </a> </li> </ul> <ul class="pervasive-links"> <li> <a href="//www.buffalo.edu"> UB Home </a> </li> <li> <a href="//www.buffalo.edu/maps"> Maps </a> </li> <li> <a href="//www.buffalo.edu/directory/"> UB Directory </a> </li> </ul> </div> <div class="main theme-blue brand-extension lines-1"> <div class="lockup"> <a href="//www.buffalo.edu"> <i class="icon icon-ub-logo"> </i> <span class="ada-hidden"> University at Buffalo </span> <span class="logo"> <img alt="" class="black" height="20" src="/v-be9166b6b4a1ea7e5771e2eba1d410cf/etc.clientlibs/wci/components/block/header/clientlibs/resources/ub-logo-black.png" width="181"/> </span> </a> <div class="mobile-links" data-set="header-links"> </div> <a class="title" href="/cas/math.html"> Department of Mathematics </a> </div> <div class="social" data-set="headersocial"> </div> <div class="tasknav" data-set="tasknav"> <div class="buttoncomponent sidebyside orange"> <a href="http://www.buffalo.edu/ub_admissions/apply-now.html" target="_blank"> Apply to UB </a> </div> <div class="buttoncomponent sidebyside blue"> <a href="http://www.buffalo.edu/cas/math/about-us/contact-us.html"> Contact Us </a> </div> <div class="buttoncomponent sidebyside green"> <a href="https://ubfoundation.buffalo.edu/giving/?gift_allocation=01-3-0-01240" target="_blank"> Support UB Math </a> </div> </div> </div> </div> </div> <div class="reference parbase section"> <div class="unstructuredpage page basicpage"> <div class="par parsys"> <div class="list parbase section"> <div data-columnize-row="1" id="ubcms-gen-263326505"> <ul class="list-style-detail" data-columnize="1"> <li> <div class="long-term-alert-banner"> <div class="text parbase section"> <p> <b> COVID-19 UPDATES • 3/4/2022 </b> </p> <ul> <li> <a href="/coronavirus/latest-update.html"> UB lifts vaccination policy for campus events </a> </li> </ul> </div> </div> </li> </ul> </div> <script> UBCMS.list.listlimit('ubcms\u002Dgen\u002D263326505', '100', '100'); </script> </div> <script> UBCMS.longTermAlert.init() </script> </div> </div> <div contenttreeid="reference" contenttreestatus="Not published" style="display:none;"> </div> </div> <div class="mobilemenu section"> <!--noindex--> <nav aria-label="mobile navigation menu"> <ul> <li class="mobileheader-button-menu" style="display: none"> <a href="#"> Menu </a> </li> <li class="mobileheader-button-search" style="display: none"> <a href="#"> Search </a> </li> </ul> </nav> <!--endnoindex--> <div class="menu" id="mobile-search"> <div class="menu-inner" data-set="mobile-search" id="mobile-search-inner"> </div> </div> <div class="menu" id="mobile-menu"> <div class="menu-inner"> <div id="mobile-menu-inner"> <div class="loading"> <!--noindex--> Loading menu... <!--endnoindex--> </div> </div> <div class="tasknav" data-set="tasknav"> </div> <div class="headersocial" data-set="headersocial"> </div> </div> </div> <script> jQuery('.mobileheader-button-menu').removeAttr('style'); jQuery(document).ready(function() { if ($('.topnav .search .search-content').length > 0) { $('.mobileheader-button-search').removeAttr('style'); } }); UBCMS.rwd.mobileMenu.load('\/content\/cas\/math\/jcr:content.nav.html', 'https:\/\/www.buffalo.edu\/cas\/math\/people\/grad-directory.html'); </script> </div> <div class="topnav section"> <nav aria-label="site navigation" class="topnav-inner"> <div class="main"> <ul class="menu"> <li class="first theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/about-us.html" id="ubcms-gen-263326511"> <span class="container"> About </span> </a> <div aria-labelledby="ubcms-gen-263326511" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="About:Why Choose Us?" href="/cas/math/about-us/why-choose.html"> Why Choose Us? </a> </li> <li> <a aria-label="About:Our Mission" href="/cas/math/about-us/our-mission.html"> Our Mission </a> </li> <li> <a aria-label="About:Our Alumni, Students, and Faculty" href="/cas/math/about-us/our-alumni.html"> Our Alumni, Students, and Faculty </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Our Alumni, Students, and Faculty:Our Alumni" href="/cas/math/about-us/our-alumni/our-alumni.html"> Our Alumni </a> </li> <li> <a aria-label="Our Alumni, Students, and Faculty:Our Students" href="/cas/math/about-us/our-alumni/our-students.html"> Our Students </a> </li> <li class="last"> <a aria-label="Our Alumni, Students, and Faculty:Our Faculty" href="/cas/math/about-us/our-alumni/our-faculty.html"> Our Faculty </a> </li> </ul> </div> </li> <li> <a aria-label="About:Memberships" href="/cas/math/about-us/memberships.html"> Memberships </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Memberships:American Mathematical Society" href="/cas/math/about-us/memberships/AMS.html"> American Mathematical Society </a> </li> <li> <a aria-label="Memberships:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html"> Association for Women in Mathematics </a> </li> <li class="last"> <a aria-label="Memberships:Mathematical Sciences Research Institute" href="/cas/math/about-us/memberships/MSRI.html"> Mathematical Sciences Research Institute </a> </li> </ul> </div> </li> <li> <a aria-label="About:Mathematicians of the African Diaspora" href="/cas/math/about-us/mathematicians-of-the-african-diaspora.html"> Mathematicians of the African Diaspora </a> </li> <li> <a aria-label="About:About the University" href="/cas/math/about-us/about-the-university.html"> About the University </a> </li> <li> <a aria-label="About:About Buffalo-Niagara" href="/cas/math/about-us/the-buffalo-niagara-region.html"> About Buffalo-Niagara </a> </li> <li> <a aria-label="About:Visiting UB" href="/cas/math/news-events/visiting.html"> Visiting UB </a> </li> <li class="last"> <a aria-label="About:Contact Us" href="/cas/math/about-us/contact-us.html"> Contact Us </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray active-trail"> <a aria-haspopup="true" href="/cas/math/people.html" id="ubcms-gen-263326519"> <span class="container"> People </span> </a> <div aria-labelledby="ubcms-gen-263326519" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="People:Faculty" href="/cas/math/people/faculty.html"> Faculty </a> </li> <li> <a aria-label="People:Staff" href="/cas/math/people/staff_directory.html"> Staff </a> </li> <li> <a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html"> Emeriti Faculty </a> </li> <li> <a aria-label="People:Instructors" href="/cas/math/people/instructors.html"> Instructors </a> </li> <li> <a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html"> Visiting Scholars </a> </li> <li class="active-trail"> <a aria-label="People:Graduate Student Directory" class="active" href="/cas/math/people/grad-directory.html"> Graduate Student Directory </a> </li> <li class="last"> <a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html"> Alumni </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html"> Class of 2021 </a> </li> <li> <a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html"> Class of 2020 </a> </li> <li class="last"> <a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html"> PhD Recipients, 2010 to Present </a> </li> </ul> </div> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/research.html" id="ubcms-gen-263326525"> <span class="container"> Research </span> </a> <div aria-labelledby="ubcms-gen-263326525" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="Research:Algebra" href="/cas/math/research/algebra.html"> Algebra </a> </li> <li> <a aria-label="Research:Analysis" href="/cas/math/research/analysis.html"> Analysis </a> </li> <li> <a aria-label="Research:Applied Mathematics" href="/cas/math/research/applied-mathematics.html"> Applied Mathematics </a> </li> <li> <a aria-label="Research:Geometry and Topology " href="/cas/math/research/geometry-topology.html"> Geometry and Topology </a> </li> <li class="last"> <a aria-label="Research:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html"> Undergraduate Research </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/ug.html" id="ubcms-gen-263326532"> <span class="container"> Undergraduate </span> </a> <div aria-labelledby="ubcms-gen-263326532" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="Undergraduate:Undergraduate Programs" href="/cas/math/ug/undergraduate-programs.html"> Undergraduate Programs </a> </li> <li> <a aria-label="Undergraduate:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html"> Undergraduate Research </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Undergraduate Research:Special Research Projects" href="/cas/math/ug/undergraduate-research/special-projects.html"> Special Research Projects </a> </li> <li class="last"> <a aria-label="Undergraduate Research:Summer Math Scholarship" href="/cas/math/ug/undergraduate-research/summer.html"> Summer Math Scholarship </a> </li> </ul> </div> </li> <li> <a aria-label="Undergraduate:Honors, Awards, and Scholarships" href="/cas/math/ug/honors--awards--and-scholarships.html"> Honors, Awards, and Scholarships </a> </li> <li> <a aria-label="Undergraduate:Undergraduate Courses" href="/cas/math/ug/ug-courses.html"> Undergraduate Courses </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Undergraduate Courses:Sample Syllabi" href="/cas/math/ug/ug-courses/syllabi.html"> Sample Syllabi </a> </li> <li> <a aria-label="Undergraduate Courses:MTH 121 and 122 Textbook" href="/cas/math/ug/ug-courses/mth121-122-textbook.html"> MTH 121 and 122 Textbook </a> </li> <li class="last"> <a aria-label="Undergraduate Courses:MTH 306 Textbook" href="/cas/math/ug/ug-courses/mth-306-textbook.html"> MTH 306 Textbook </a> </li> </ul> </div> </li> <li> <a aria-label="Undergraduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home"> Directed Reading Program </a> </li> <li> <a aria-label="Undergraduate:Mathematics Resources" href="/cas/math/ug/resources.html"> Mathematics Resources </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Mathematics Resources:Mathematics Placement Exam" href="/cas/math/ug/resources/mathplacement.html"> Mathematics Placement Exam </a> </li> <li> <a aria-label="Mathematics Resources:Mathematics Placement Exam Frequently Asked Questions" href="/cas/math/ug/resources/MPEFAQ.html"> Mathematics Placement Exam Frequently Asked Questions </a> </li> <li class="last"> <a aria-label="Mathematics Resources:Force Registration" href="/cas/math/ug/resources/force-registration.html"> Force Registration </a> </li> </ul> </div> </li> <li> <a aria-label="Undergraduate:Mathematics Help Center" href="/cas/math/ug/help-center.html"> Mathematics Help Center </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first last"> <a aria-label="Mathematics Help Center:Online Help Sessions" href="/content/cas/math/ug/help-center/zoom-pw.html"> Online Help Sessions </a> </li> </ul> </div> </li> <li class="last"> <a aria-label="Undergraduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html"> Association for Women in Mathematics </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/grad.html" id="ubcms-gen-263326542"> <span class="container"> Graduate </span> </a> <div aria-labelledby="ubcms-gen-263326542" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="Graduate:Master's Program" href="/cas/math/grad/master-program.html"> Master's Program </a> </li> <li> <a aria-label="Graduate:Doctoral Program (PhD)" href="/cas/math/grad/doctoral-program.html"> Doctoral Program (PhD) </a> </li> <li> <a aria-label="Graduate:Request Information" href="/cas/math/grad/request-information.html"> Request Information </a> </li> <li> <a aria-label="Graduate:Admissions" href="/cas/math/grad/grad-admissions.html"> Admissions </a> </li> <li> <a aria-label="Graduate:Courses" href="/cas/math/grad/grad-courses.html"> Courses </a> </li> <li> <a aria-label="Graduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home"> Directed Reading Program </a> </li> <li> <a aria-label="Graduate:Graduate Research" href="/cas/math/grad/grad-research.html"> Graduate Research </a> </li> <li> <a aria-label="Graduate:Fellowships, Scholarships, Awards" href="/cas/math/grad/fellowships-awards.html"> Fellowships, Scholarships, Awards </a> </li> <li> <a aria-label="Graduate:PhD Recipients, 2010 to present" href="/cas/math/grad/PhD-recipients.html"> PhD Recipients, 2010 to present </a> </li> <li> <a aria-label="Graduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html"> Association for Women in Mathematics </a> </li> <li> <a aria-label="Graduate:Graduate Student Lecture Series" href="/cas/math/grad/gsls.html"> Graduate Student Lecture Series </a> </li> <li class="last active-trail"> <a aria-label="Graduate:Graduate Student Directory" href="/cas/math/people/grad-directory.html"> Graduate Student Directory </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/courses.html" id="ubcms-gen-263326552"> <span class="container"> Courses </span> </a> </li> <li class="last theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/news-events/news.html" id="ubcms-gen-263326553"> <span class="container"> News & Events </span> </a> <div aria-labelledby="ubcms-gen-263326553" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="News & Events:News" href="/cas/math/news-events/news.html"> News </a> </li> <li> <a aria-label="News & Events:Events " href="/cas/math/news-events/calendar.html"> Events </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Events :Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html"> Class of 2021 </a> </li> <li class="last"> <a aria-label="Events :Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html"> Class of 2020 </a> </li> </ul> </div> </li> <li> <a aria-label="News & Events:Myhill Lecture Series" href="/cas/math/news-events/myhill.html"> Myhill Lecture Series </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Myhill Lecture Series:Laura DeMarco, 2019" href="/cas/math/news-events/myhill/laura-demarco.html"> Laura DeMarco, 2019 </a> </li> <li> <a aria-label="Myhill Lecture Series:Mark Newman, 2018" href="/cas/math/news-events/myhill/mark-newman.html"> Mark Newman, 2018 </a> </li> <li> <a aria-label="Myhill Lecture Series:Guoliang Yu, 2017" href="/cas/math/news-events/myhill/guoliangyu.html"> Guoliang Yu, 2017 </a> </li> <li> <a aria-label="Myhill Lecture Series:Gopal Prasad, 2016" href="/cas/math/news-events/myhill/gopal-prasad.html"> Gopal Prasad, 2016 </a> </li> <li> <a aria-label="Myhill Lecture Series:Ciprian Manolescu, 2015" href="/cas/math/news-events/myhill/ciprian-manolescu.html"> Ciprian Manolescu, 2015 </a> </li> <li> <a aria-label="Myhill Lecture Series:Percy A. Deift, 2014" href="/cas/math/news-events/myhill/percy-deift.html"> Percy A. Deift, 2014 </a> </li> <li class="last"> <a aria-label="Myhill Lecture Series:Peter Sarnak, 2013" href="/cas/math/news-events/myhill/peter-sarnak.html"> Peter Sarnak, 2013 </a> </li> </ul> </div> </li> <li> <a aria-label="News & Events:NERCCS 2020" href="/cas/math/news-events/nerccs-2020.html"> NERCCS 2020 </a> </li> <li> <a aria-label="News & Events:News & Events Archive" href="/cas/math/news-events/archives.html"> News & Events Archive </a> </li> <li class="last"> <a aria-label="News & Events:Visiting UB" href="/cas/math/news-events/visiting.html"> Visiting UB </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> </ul> </div> <div class="right"> <div class="search"> <!--noindex--> <div class="search-menu" tabindex="0"> <div class="search-label"> Search </div> <!-- Uses appendAround.js script to transfer this search form to mobile nav menu via data-set attribute. --> <div class="search-content" data-set="mobile-search"> <form action="/cas/math/searchresults.html" class="search-form" method="GET" onsubmit="return this.q.value != ''"> <div class="search-container" role="search"> <input aria-label="Search" autocomplete="off" class="search-input" id="ubcms-gen-263326561" name="q" placeholder="Search" type="text"/> <button aria-label="Search" class="search-submit" type="submit" value="Search"> </button> </div> </form> </div> </div> <!--endnoindex--> </div> <div class="audiencenav list parbase"> <div class="audiencenav-wrapper" tabindex="0"> <div class="label"> Info For </div> <ul> <li> <a href="/cas/math/information-for-students.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Current Students </a> </li> <li> <a href="/cas/math/ug/undergraduate-programs.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Future Undergraduate Students </a> </li> <li> <a href="/cas/math/grad.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Future Graduate Students </a> </li> <li> <a href="/cas/math/information-for-faculty-staff.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Faculty & Staff </a> </li> <li> <a href="/cas/math/people/alumni-friends.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Alumni & Friends </a> </li> <li> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Diversity, Equity, and Inclusive Excellence Resources </a> </li> </ul> </div> </div> </div> </nav> <script> $(".topnav").accessibleDropDown(); </script> </div> </div> </div> <div contenttreeid="innerheader" contenttreestatus="Not published" style="display:none;"> </div> </div> </header> <div class="two-column clearfix" id="columns"> <div class="columns-bg columns-bg-1"> <div class="columns-bg columns-bg-2"> <div class="columns-bg columns-bg-3"> <div class="columns-bg columns-bg-4"> <div id="left"> <div class="leftnav"> <nav aria-label="section navigation" class="inner"> <div class="title"> <a href="/cas/math/people.html"> <span class="title"> People </span> </a> </div> <ul class="menu nav-level-1"> <li class="first"> <a aria-label="People:Faculty" href="/cas/math/people/faculty.html"> Faculty </a> </li> <li> <a aria-label="People:Staff" href="/cas/math/people/staff_directory.html"> Staff </a> </li> <li> <a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html"> Emeriti Faculty </a> </li> <li> <a aria-label="People:Instructors" href="/cas/math/people/instructors.html"> Instructors </a> </li> <li> <a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html"> Visiting Scholars </a> </li> <li class="active-trail"> <span> <a aria-label="People:Graduate Student Directory" class="active" href="/cas/math/people/grad-directory.html"> Graduate Student Directory </a> </span> </li> <li class="last expand-submenu"> <a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html"> Alumni </a> <ul class="menu nav-level-2"> <li class="first expand-submenu"> <a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html"> Class of 2021 </a> </li> <li class="expand-submenu"> <a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html"> Class of 2020 </a> </li> <li class="last expand-submenu"> <a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html"> PhD Recipients, 2010 to Present </a> </li> </ul> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </nav> </div> <div class="mobile-left-col hide-in-narrow" data-set="mobile-center-bottom-or-right-top"> <div class="leftcol parsys iparsys" role="complementary"> <div class="section"> <div class="new"> </div> </div> <div class="iparys_inherited"> <div class="leftcol iparsys parsys"> <div class="flexmodule imagebase section"> <div class="flexmodule-inner" id="ubcms-gen-263326568"> <div class="title"> <h2> Diversity, Equity, and Inclusive Excellence Resources </h2> </div> <div class="teaser teaser-block flexmodule-style flexmodule-style-largeimg"> <div class="teaser-inner"> <div class="teaser-images"> <div class="teaser-image"> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html" target="_blank"> <noscript> <picture contenttreeid="flexmodule" contenttreestatus="Not published"> <source media="(max-width: 568px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x" type="image/png"> <source media="(max-width: 720px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png" type="image/png"> <source srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" type="image/png"> <img alt="Diversity, Equity, and Inclusive Excellence Resources. " class="img-209 img-209x131 cq-dd-image" height="131" src="/content/cas/math/people/_jcr_content/leftcol/flexmodule.img.209.131.png/1607108331977.png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" width="209"/> </source> </source> </source> </picture> </noscript> <picture class="no-display" contenttreeid="flexmodule" contenttreestatus="Not published"> <source data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x" media="(max-width: 568px)" type="image/png"> <source data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png" media="(max-width: 720px)" type="image/png"> <source data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" type="image/png"> <img alt="Diversity, Equity, and Inclusive Excellence Resources. " class="img-209 img-209x131 cq-dd-image lazyload" data-src="/content/cas/math/people/jcr%3acontent/leftcol/flexmodule.img.209.131.png/1607108331977.png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" height="131" width="209"/> </source> </source> </source> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </a> </div> </div> <div class="teaser-content"> <div class="teaser-body"> <p> UB is committed to achieving inclusive excellence in a deliberate, intentional and coordinated fashion, embedding it in every aspect of our operations. We aspire to foster a healthy, productive, ethical, fair, and affirming campus community to allow all students, faculty and staff to thrive and realize their full potential. <br/> </p> </div> <div class="teaser-links"> <div class="list"> <div data-columnize-row="1" id="ubcms-gen-263326569"> <ul class="link-list" data-columnize="1"> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/promoting-equal-employment-opportunity-and-diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> Promoting Equal Employment Opportunity and Diversity </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> Inclusive Excellence Resources </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/toolkits_trainings.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> Toolkits </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/studentlife/who-we-are/departments/diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> UB Intercultural and Diversity Center </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/diversity-innovation.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> UB Center for Diversity Innovation </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/external-resources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> External Resources </span> </span> </a> </span> </li> </ul> </div> <div class="clearfix"> </div> <script> UBCMS.list.listlimit('ubcms\u002Dgen\u002D263326569', '100', '100'); </script> </div> </div> </div> </div> <div class="teaser-clear"> </div> </div> </div> <div class="flexmodule-clear"> </div> </div> </div> </div> </div> </div> </div> <script> (function() { var $firstLeftIparsysInherited = $('#left .iparys_inherited').eq(0); var $firstLeftIparsysSection = $('#left > .iparsys:first-child > .section:first-child'); var $mcbort = $('.mobile-center-bottom-or-right-top'); if ($firstLeftIparsysInherited.length && $firstLeftIparsysInherited.html().replace(/\s+|<\/?div\b[^>]*>/gi, '') === '') $firstLeftIparsysInherited.addClass('empty'); if ($firstLeftIparsysSection.length && $firstLeftIparsysSection.html().replace(/\s+|<\/?div\b[^>]*>/gi, '') === '') $firstLeftIparsysSection.addClass('empty'); if ($mcbort.length && $mcbort.html().replace(/\s+|<\/?div\b[^>]*>/gi, '') === '') $mcbort.addClass('empty'); $('[role=complementary]').each(function() { var $this = $(this); if ($this.children().filter(':not(.empty)').filter(':not(:empty)').length === 0) $this.removeAttr('role'); }); if ($('.leftcol[role=complementary]').length > 0 && $('#right[role=complementary]').length > 0) { $('.leftcol[role=complementary]').attr('aria-label', 'left column'); $('#right[role=complementary]').attr('aria-label', 'right column'); } })(); </script> <div id="skip-to-content"> </div> <div id="center" role="main"> <div class="mobile-content-top" data-set="content-top"> </div> <div class="par parsys"> <div class="title section"> <h1 id="title" onpaste="onPasteFilterPlainText(event)"> Graduate Student Directory </h1> </div> <div class="image-container image-container-680"> <div class="image border-hide"> <noscript> <picture contenttreeid="image" contenttreestatus="Not published"> <source media="(max-width: 568px)" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.448.auto.m.q50.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.576.auto.m.q50.jpg/1629919606956.jpg 2x" type="image/jpeg"> <source media="(max-width: 720px)" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.688.auto.q80.jpg/1629919606956.jpg" type="image/jpeg"> <source srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.680.auto.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x" type="image/jpeg"> <img alt="1. " class="img-680 cq-dd-image" src="/content/cas/math/people/grad-directory/_jcr_content/par/image.img.680.auto.jpg/1629919606956.jpg" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x" width="680"/> </source> </source> </source> </picture> </noscript> <picture class="no-display" contenttreeid="image" contenttreestatus="Not published"> <source data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.448.auto.m.q50.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.576.auto.m.q50.jpg/1629919606956.jpg 2x" media="(max-width: 568px)" type="image/jpeg"> <source data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.688.auto.q80.jpg/1629919606956.jpg" media="(max-width: 720px)" type="image/jpeg"> <source data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.680.auto.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x" type="image/jpeg"> <img alt="1. " class="img-680 cq-dd-image lazyload" data-src="/content/cas/math/people/grad-directory/jcr%3acontent/par/image.img.680.auto.jpg/1629919606956.jpg" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x" width="680"/> </source> </source> </source> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> <!-- <span data-sly-test="false" class="aria-hidden"></span> --> </div> </div> <div class="title section"> <h2 id="top" onpaste="onPasteFilterPlainText(event)"> Mathematics Graduate Student Directory 2021-2022 </h2> </div> <div class="introtext text parbase section"> <p> <a href="#letter_a"> A </a> | <a href="#letter_b"> B </a> | <a href="#letter_c"> C </a> | <a href="#letter_d"> D </a> | E | <a href="#letter_f"> F </a> | <a href="#letter_g"> G </a> | <a href="#letter_h"> H </a> | I | <a href="#letter_j"> J </a> | <a href="#letter_h"> K </a> | <a href="#letter_l"> L </a> | <a href="#letter_m"> M </a> | <a href="#letter_n"> N </a> | <a href="#letter_o"> O </a> | <a href="#letter_p"> P </a> | Q | <a href="#letter_r"> R </a> | <a href="#letter_s"> S </a> | <a href="#letter_t"> T </a> | <a href="#letter_u"> U </a> | <a href="#letter_v"> V </a> | <a href="#letter_w"> W </a> | <a href="#letter_x"> X </a> | <a href="#letter_y"> Y </a> | <a href="#letter_z"> Z </a> </p> </div> <div class="hr hrline" style="clear:left"> </div> <div class="text parbase section"> <p> <i> Offices as listed are in the Mathematics Building, North Campus. </i> </p> </div> <div class="hr hrline" style="clear:left"> </div> <div class="title section"> <h2 id="title_3" onpaste="onPasteFilterPlainText(event)"> A </h2> </div> <div class="text parbase section"> <p> <b> Abeya Ranasinghe Mudiyanselage, Asela V. </b> <br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:aselavir@buffalo.edu"> aselavir@buffalo.edu </a> </p> <p> <b> Ahn, Min Woong </b> <br/> Office: 126 Phone: 645-8816 <br/> Email: <a href="mailto:minwoong@buffalo.edu"> minwoong@buffalo.edu </a> </p> <p> <b> Alegria, Linda </b> <br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:lindaale@buffalo.edu"> lindaale@buffalo.edu </a> <br/> </p> </div> <div class="hr hrline" style="clear:left"> </div> <div class="title section"> <h2 id="letter_b" onpaste="onPasteFilterPlainText(event)"> B </h2> </div> <div class="text parbase section"> <p> <b> Betz, Katherine </b> <br/> Office: 132 Phone: 645-8820 <br/> Email: <a href="mailto:kbetz2@buffalo.edu"> kbetz2@buffalo.edu </a> </p> <p> <b> Bhaumik, Jnanajyoti </b> <br/> Office: 129 Mathematics Building <br/> Phone: 645-8817 <br/> Email: <a href="mailto:jnanajyo@buffalo.edu"> jnanajyo@buffalo.edu </a> </p> <p> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="hr hrline" style="clear:left"> </div> <div class="title section"> <h2 id="letter_c" onpaste="onPasteFilterPlainText(event)"> C </h2> </div> <div class="text parbase section"> <p> <b> Cain Charles </b> <br/> Email: <a href="mailto:ccain2@buffalo.edu"> ccain2@buffalo.edu </a> </p> <p> <b> Casper, Michael <br/> </b> Office: 222 Phone: 645-8779 <br/> Email: <a href="mailto:mjcasper@buffalo.edu"> mjcasper@buffalo.edu </a> </p> <p> <b> Chang, Hong <br/> </b> Office: 136 Phone: 645-8821 <br/> Email: <a href="mailto:hchang24@buffalo.edu"> hchang24@buffalo.edu </a> </p> <p> <b> Chen, Yen-Lin <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:yenlinch@buffalo.edu"> yenlinch@buffalo.edu </a> <br/> </p> <p> <b> Cheuk, Ka Yue <br/> </b> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:kayueche@buffalo.edu"> kayueche@buffalo.edu </a> </p> <p> <b> Cosgrove, Gage (Makenzie) <br/> </b> Office: 139 Phone: 645-8824 <br/> Email: <a href="mailto:gagecosg@buffalo.edu"> gagecosg@buffalo.edu </a> </p> <p> </p> </div> <div class="hr hrline" style="clear:left"> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_d" onpaste="onPasteFilterPlainText(event)"> D </h2> </div> <div class="title section"> <h2 id="letter_e" onpaste="onPasteFilterPlainText(event)"> E </h2> </div> <div class="text parbase section"> <p> <b> Engelhardt, Carolyn <br/> </b> Email: <a href="mailto:cengelha@buffalo.edu"> cengelha@buffalo.edu </a> <br/> </p> </div> <div class="title section"> <h2 id="letter_f" onpaste="onPasteFilterPlainText(event)"> F </h2> </div> <div class="text parbase section"> <p> <b> Fonseca dos Reis, Elohim <br/> </b> Office: 313 Phone: 645-8804 <br/> Email: <a href="mailto:elohimfo@buffalo.edu"> elohimfo@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_g" onpaste="onPasteFilterPlainText(event)"> G </h2> </div> <div class="text parbase section"> <p> <b> Gkogkou, Aikaterini </b> <br/> Office: 129 Phone: 645-8817 <br/> Email: <a href="mailto:agkogkou@buffalo.edu"> agkogkou@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_h" onpaste="onPasteFilterPlainText(event)"> H </h2> </div> <div class="text parbase section"> <p> <b> Haverlick, Justin <br/> </b> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:jmhaverl@buffalo.edu"> jmhaverl@buffalo.edu </a> </p> <p> <b> Herron, Amy </b> <br/> Office: 135 <br/> Email: <a href="mailto:ajherron@buffalo.edu"> ajherron@buffalo.edu </a> </p> <p> <b> Hovland, Seth </b> <br/> Office: 130 Phone: 645-8818 <br/> Email: <a href="mailto:sethhovl@buffalo.edu"> sethhovl@buffalo.edu </a> </p> <p> <b> Hung, Tsz Fun </b> <br/> Office: 137 Phone: 645-8822 <br/> Email: <a href="mailto:tszfunhu@buffalo.edu"> tszfunhu@buffalo.edu </a> </p> <p> <b> Hutchings, Raymond </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:rhhutchi@buffalo.edu"> rhhutchi@buffalo.edu </a> </p> <p> <b> Huynh, Bao <br/> </b> Office: 131 Phone: 645-8819 <br/> Email: <a href="mailto:baohuynh@buffalo.edu"> baohuynh@buffalo.edu </a> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_j" onpaste="onPasteFilterPlainText(event)"> J </h2> </div> <div class="text parbase section"> <p> <b> Jeong, Myeongjin <br/> </b> Office: 244 <br/> Email: <a href="mailto:mjeong31@buffalo.edu"> mjeong31@buffalo.edu </a> </p> <p> <b> Jones, Raymond </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:rpjones2@buffalo.edu"> rpjones2@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_k" onpaste="onPasteFilterPlainText(event)"> K </h2> </div> <div class="text parbase section"> <p> <b> Kilic, Bengier Ulgen <br/> </b> Office: 106 Phone: 645-8763 <br/> Email: <a href="mailto:bengieru@buffalo.edu"> bengieru@buffalo.edu </a> </p> <p> <b> Kim, Jiseong <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:jiseongk@buffalo.edu"> jiseongk@buffalo.edu </a> </p> <p> <b> Kireyev, Dmitri </b> <br/> Office: 129 Phone: 645-8817 <br/> Email: <a href="mailto:dmitriki@buffalo.edu"> dmitriki@buffalo.edu </a> <br/> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_l" onpaste="onPasteFilterPlainText(event)"> L </h2> </div> <div class="text parbase section"> <p> <b> Le, Minh Quang </b> <br/> Office: 131 Phone: 645-8819 <br/> Email: <a href="mailto:minhquan@buffalo.edu"> minhquan@buffalo.edu </a> </p> <p> <b> Leonard, Dakota </b> <br/> Office: 131 Phone: 645-8819 <br/> Email: <a href="mailto:dl42@buffalo.edu"> dl42@buffalo.edu </a> </p> <p> <b> Liao, Chang-Chih </b> <br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:cliao9@buffalo.edu"> cliao9@buffalo.edu </a> </p> <p> <b> Liao, Yanzhan </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:yanzhanl@buffalo.edu"> yanzhanl@buffalo.edu </a> </p> <p> <b> Liu, Ruodan </b> <br/> Office: 135 Phone: 645-8832 <br/> Email: <a href="mailto:rliu8@buffalo.edu"> rliu8@buffalo.edu </a> </p> <p> <b> Liu,Tianmou <br/> </b> Office: 136 Phone: 645-8821 <br/> Email: <a href="mailto:tianmoul@buffalo.edu"> tianmoul@buffalo.edu </a> </p> <p> <b> Liu, Yuan </b> <br/> Office: 135 Phone: 645-8832 <br/> Email: <a href="mailto:yuanliu@buffalo.edu"> yuanliu@buffalo.edu </a> </p> <p> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_m" onpaste="onPasteFilterPlainText(event)"> M </h2> </div> <div class="text parbase section"> <p> <b> Ma, Ning <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:nma22@buffalo.edu"> nma22@buffalo.edu </a> <br/> </p> <p> <b> Ma, Renda <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:rendama@buffalo.edu"> rendama@buffalo.edu </a> </p> <p> <b> Ma, Yuqing </b> <br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:yuqingma@buffalo.edu"> yuqingma@buffalo.edu </a> </p> <p> <b> Meng, Lingqi <br/> </b> Office: 130 Phone: 645-8818 <br/> Email: <a href="mailto:lingqime@buffalo.edu"> lingqime@buffalo.edu </a> </p> <p> <b> Meyer, Drew </b> <br/> Office: 137 Phone: 645-8822 <br/> Email: <a href="mailto:drewmeye@buffalo.edu"> drewmeye@buffalo.edu </a> </p> <p> <b> Montoro, Michael <br/> </b> Office: 126 Phone: 645-8816 <br/> Email: <a href="mailto:mnmontor@buffalo.edu"> mnmontor@buffalo.edu </a> </p> <p> <b> Moore, Robert </b> <br/> Office: 139 Phone: 645-8824 <br/> Email: <a href="mailto:rcmoore@buffalo.edu"> rcmoore@buffalo.edu </a> <br/> </p> </div> <div class="title section"> <h2 id="letter_n" onpaste="onPasteFilterPlainText(event)"> N </h2> </div> <div class="text parbase section"> <p> <b> Nguyen, Khanh Truong </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:kn55@buffalo.edu"> kn55@buffalo.edu </a> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_o" onpaste="onPasteFilterPlainText(event)"> O </h2> </div> <div class="title section"> <h2 id="letter_p" onpaste="onPasteFilterPlainText(event)"> P </h2> </div> <div class="text parbase section"> <p> <b> Peng, Jun </b> <br/> Office: 139 Phone: 645-8824 <b> <br/> </b> Email: <a href="mailto:jpeng3@buffalo.edu"> jpeng3@buffalo.edu </a> </p> <p> <b> Poste, Alex </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:apposte@buffalo.edu"> apposte@buffalo.edu </a> </p> <p> </p> </div> <div class="title section"> <h2 id="letter_r" onpaste="onPasteFilterPlainText(event)"> R </h2> </div> <div class="text parbase section"> <p> <b> Rantanen, Matthew <br/> </b> Office: 130 Phone: 645-8818 <br/> Email: <a href="mailto:mattrant@buffalo.edu"> mattrant@buffalo.edu </a> </p> <p> <b> Rele, Adhish </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:adhishpr@buffalo.edu"> adhishpr@buffalo.edu </a> </p> <p> <b> Russell, Madison </b> <br/> Office: 129 Phone: 645-8817 <br/> Email: <a href="mailto:merussel@buffalo.edu"> merussel@buffalo.edu </a> </p> <p> <b> Rozwood, Bud <br/> </b> Office: 125 Phone: 645-8815 <b> <br/> </b> Email: <a href="mailto:budrozwo@buffalo.edu"> budrozwo@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_s" onpaste="onPasteFilterPlainText(event)"> S </h2> </div> <div class="text parbase section"> <p> <b> Sarkar, Sayantan <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:sayantan@buffalo.edu"> sayantan@buffalo.edu </a> </p> <p> <b> Sharma, Abhishek <br/> </b> Office: 126 Phone: 645-8816 <br/> Email: aks28 <a href="mailto:sayantan@buffalo.edu"> @buffalo.edu </a> </p> <p> <b> Sicuso, Luca </b> <br/> Office: 131 Phone: 645-8819 <br/> Email: <a href="mailto:lucasicu@buffalo.edu"> lucasicu@buffalo.edu </a> </p> <p> <b> Solanki, Deepisha </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:deepisha@buffalo.edu"> deepisha@buffalo.edu </a> </p> <p> <b> Som, Bratati <br/> </b> Office: 132 Phone: 645-8820 <br/> Email: <a href="mailto:bratatis@buffalo.edu"> bratatis@buffalo.edu </a> </p> <p> <b> Song, Zhao <br/> </b> Office: 131 Phone: 645-8819 <br/> Email: <a href="mailto:zhaosong@buffalo.edu"> zhaosong@buffalo.edu </a> </p> <p> <b> Sullivan, Mark </b> <br/> Office: 136 Phone: 645-8821 <br/> Email: <a href="mailto:marksull@buffalo.edu"> marksull@buffalo.edu </a> </p> <p> <b> Sun, Yuxun </b> <br/> Office: 137 Phone: 645-8822 <br/> Email: <a href="mailto:yuxunsun@buffalo.edu"> yuxunsun@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_t" onpaste="onPasteFilterPlainText(event)"> T </h2> </div> <div class="text parbase section"> <p> <b> Thongprayoon, Chanon </b> <br/> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:chanonth@buffalo.edu"> chanonth@buffalo.edu </a> <br/> <br/> <br/> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_u" onpaste="onPasteFilterPlainText(event)"> U </h2> </div> <div class="title section"> <h2 id="letter_v" onpaste="onPasteFilterPlainText(event)"> V </h2> </div> <div class="text parbase section"> <p> <b> Vadnere, Arya Abhijeet </b> <br/> Office: 132 Mathematics Building <br/> Phone: 645-8820 <br/> Email: <a href="mailto:aryaabhi@buffalo.edu"> aryaabhi@buffalo.edu </a> </p> <p> <b> Vinal, Gregory <br/> </b> Office: 126 Phone: 645-8816 <br/> Email: <a href="mailto:chanonth@buffalo.edu"> gregoryv@buffalo.edu </a> </p> <p> </p> </div> <div class="title section"> <h2 id="letter_w" onpaste="onPasteFilterPlainText(event)"> W </h2> </div> <div class="text parbase section"> <p> <b> Wang, Daxun <br/> </b> Office: 141 Phone: 645-8825 <br/> Email: <a href="mailto:daxunwan@buffalo.edu"> daxunwan@buffalo.edu </a> </p> <p> <b> Wang, Shiruo <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:bwang32@buffalo.edu"> shiruowa@buffalo.edu </a> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_y" onpaste="onPasteFilterPlainText(event)"> Y </h2> </div> <div class="text parbase section"> <p> <b> Yuan, Cheng </b> <br/> Office: 137 Phone: 645-8822 <br/> Email: <a href="mailto:chengyua@buffalo.edu"> chengyua@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_z" onpaste="onPasteFilterPlainText(event)"> Z </h2> </div> <div class="text parbase section"> <p> <b> Zhang, Baoming </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:baomingz@buffalo.edu"> baomingz@buffalo.edu </a> </p> <p> <b> Zhao, Bojun </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:bojunzha@buffalo.edu"> bojunzha@buffalo.edu </a> </p> <p> <b> Ziegler, Cameron </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:cz22@buffalo.edu"> cz22@buffalo.edu </a> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> </div> <div class="mobile-content-bottom" data-set="content-bottom"> </div> <div class="mobile-center-or-right-bottom" data-set="center-or-right-bottom"> </div> <div class="mobile-center-bottom-or-right-top" data-set="mobile-center-bottom-or-right-top"> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <footer> <div class="footer inheritedreference reference parbase"> <div class="footerconfigpage contentpage page basicpage"> <div class="par parsys"> <div class="htmlsnippet section"> <div> <style type="text/css"> @only screen and (max-width: 720px){ .simplefooter .simplefootercontents > .copyright { clear: both; position: relative; top: 7px; } } </style> </div> </div> <div class="fatfooter section"> <div class="footer-mode-simple clearfix"> <a class="ub-logo-link" href="//www.buffalo.edu/"> <img alt="University at Buffalo The State University of New York - 175 Years: 1846-2021" class="ub-logo" src="/v-e541efb31faa2518c910054a542e1234/etc.clientlibs/wci/components/block/fatfooter/clientlibs/resources/ub-logo-175-years.png" width="400"/> </a> <div class="footer-columns footer-columns-1"> <div class="footer-column footer-column-1"> <div class="col1 parsys"> <div class="title section"> <h2 id="title-1" onpaste="onPasteFilterPlainText(event)"> <a href="/cas/math.html"> Department of Mathematics </a> </h2> </div> <div class="text parbase section"> <p> 244 Mathematics Building <br/> Buffalo, NY 14260-2900 <br/> Phone: (716) 645-6284 <br/> Fax: (716) 645-5039 </p> </div> <div class="reference parbase section"> <div class="unstructuredpage page basicpage"> <div class="par parsys"> <div class="hr hrline" style="clear:left"> </div> <div class="captiontext text parbase section"> <p> <b> About Our Photos and Videos: </b> Some photos or videos that appear on this site may have been taken prior to the COVID-19 pandemic and therefore may not accurately reflect current operations or adherence to <a href="https://www.buffalo.edu/coronavirus/health-and-safety.html" target="_blank"> UB’s Health and Safety Guidelines </a> . <br/> </p> </div> </div> </div> <div contenttreeid="reference-1" contenttreestatus="Not published" style="display:none;"> </div> </div> </div> </div> </div> <div class="copyright"> <span class="copy"> </span> <script> jQuery(".copyright .copy").html("© " + (new Date()).getFullYear()); </script> <a href="//www.buffalo.edu/"> University at Buffalo </a> . All rights reserved. | <a href="//www.buffalo.edu/administrative-services/policy1/ub-policy-lib/privacy.html"> Privacy </a> | <a href="//www.buffalo.edu/access/about-us/contact-us.html"> Accessibility </a> </div> </div> </div> <div class="htmlsnippet section"> <div> <!-- Global site tag (gtag.js) - Google Analytics --> <script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-127757988-27"> </script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-127757988-27'); </script> </div> </div> </div> </div> <div contenttreeid="footer" contenttreestatus="Not published" style="display:none;"> </div> </div> </footer> </body> </html>
links = soup.find_all('a')
links[:10]
[<a href="#skip-to-content" id="skip-to-content-link">Skip to Content</a>, <a href="http://arts-sciences.buffalo.edu/">College of Arts and Sciences</a>, <a href="//www.buffalo.edu">UB Home</a>, <a href="//www.buffalo.edu/maps">Maps</a>, <a href="//www.buffalo.edu/directory/">UB Directory</a>, <a href="//www.buffalo.edu"> <i class="icon icon-ub-logo"></i><span class="ada-hidden">University at Buffalo</span> <span class="logo"> <img alt="" class="black" height="20" src="/v-be9166b6b4a1ea7e5771e2eba1d410cf/etc.clientlibs/wci/components/block/header/clientlibs/resources/ub-logo-black.png" width="181"/> </span> </a>, <a class="title" href="/cas/math.html">Department of Mathematics</a>, <a href="http://www.buffalo.edu/ub_admissions/apply-now.html" target="_blank"> Apply to UB </a>, <a href="http://www.buffalo.edu/cas/math/about-us/contact-us.html"> Contact Us </a>, <a href="https://ubfoundation.buffalo.edu/giving/?gift_allocation=01-3-0-01240" target="_blank"> Support UB Math </a>]
link = links[7]
link
<a href="http://www.buffalo.edu/ub_admissions/apply-now.html" target="_blank"> Apply to UB </a>
link.attrs
{'href': 'http://www.buffalo.edu/ub_admissions/apply-now.html', 'target': '_blank'}
link['href']
'http://www.buffalo.edu/ub_admissions/apply-now.html'
link.get_text()
' Apply to UB '
import requests
from bs4 import BeautifulSoup
grad_url = "http://www.buffalo.edu/cas/math/people/grad-directory.html"
grads = requests.get(grad_url).text
grads
'<!DOCTYPE HTML><html lang="en" class="ubcms-65"><!-- cmspub01 0316-120613 --><head><link rel="preconnect" href="https://www.googletagmanager.com/" crossorigin/><link rel="dns-prefetch" href="https://www.googletagmanager.com/"/><link rel="dns-prefetch" href="https://connect.facebook.net/"/><link rel="dns-prefetch" href="https://www.google-analytics.com/"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta http-equiv="content-type" content="text/html; charset=UTF-8"/><meta id="meta-viewport" name="viewport" content="width=device-width,initial-scale=1"/><script>if (screen.width > 720 && screen.width < 960) document.getElementById(\'meta-viewport\').setAttribute(\'content\',\'width=960\');</script><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);})(window,document,\'script\',\'dataLayer\',\'GTM-T5KRRKT\');</script><title>Graduate Student Directory - Department of Mathematics - University at Buffalo</title><link rel="canonical" href="https://www.buffalo.edu/cas/math/people/grad-directory.html"/><meta name="date" content="2022-03-01"/><meta property="og:title" content="Graduate Student Directory"/><meta property="og:description" content=" A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z "/><meta property="og:image" content="https://www.buffalo.edu/etc/designs/ubcms/clientlibs-main/images/ub-social.png.img.512.auto.png/1615975612658.png"/><meta property="og:image:alt" content="University at Buffalo"/><meta name="twitter:card" content="summary_large_image"/><meta property="thumbnail" content="https://www.buffalo.edu/cas/math/people/grad-directory/_jcr_content/par/image.img.512.auto.jpg/1629919606956.jpg"/><meta property="thumbnail:alt" content="1. "/><link rel="stylesheet" href="/v-5150cc622c68590719981526ed5c6b25/etc/designs/ubcms/clientlibs-privateauthor.min.5150cc622c68590719981526ed5c6b25.css" type="text/css"><link rel="stylesheet" href="/v-49ba143ee0d54e4b50b059d8fe0cb4d1/etc/designs/ubcms/clientlibs.min.49ba143ee0d54e4b50b059d8fe0cb4d1.css" type="text/css"><link type="text/css" rel="stylesheet" href="/v-9cc4b89851550cf5e105d25db85ba3e9/etc/designs/cas/math/css/main.css"/><script src="/v-a83c7a045b4a3c7a9600758298bc4ad8/etc/designs/ubcms/clientlibs-polyfills.min.a83c7a045b4a3c7a9600758298bc4ad8.js" nomodule></script><script src="/etc.clientlibs/clientlibs/granite/jquery.min.cee8557e8779d371fe722bbcdd3b3eb7.js"></script><script src="/v-90b621c54f984dacfd1d096327d757da/etc/designs/ubcms/clientlibs.min.90b621c54f984dacfd1d096327d757da.js"></script><style>body.page #page, body.page .page-inner {background-color:#FFFFFF}</style><script>(function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\');ga(\'create\', \'UA-67291618-1\', \'auto\');ga(\'send\', \'pageview\');</script><style>\n img.lazyload,img.lazyloading{position:relative;background:#EEE}\n img.lazyload:before,img.lazyloading:before{content:"";background:#EEE;position:absolute;top:0;left:0;bottom:0;right:0}\n </style></head><body class="contentpage page"><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T5KRRKT" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><nav aria-label="skip to content"><a href="#skip-to-content" id="skip-to-content-link">Skip to Content</a></nav><div></div><div id="page"><div class="page-inner"><div class="page-inner-1"><div class="page-inner-2"><div class="page-inner-2a"></div><div class="page-inner-3"><header><div class="innerheader inheritedreference reference parbase"><div class="headerconfigpage contentpage page basicpage"><div class="par parsys "><div class="alertbanner reference parbase section"><div contenttreeid="alertbanner" contenttreestatus="Not published" style="display:none;"></div><script>jQuery(\'.cap-message\').detach().insertBefore(\'#page\').wrap(\'<section aria-label="UB Alert">\');</script></div><div class="header section"><style>\n .innerheader { padding-top: 158px }\n .header { height: 158px }\n .header .main { height: 134px }\n </style><div><div class="top theme-blue" data-set="header-links"><ul class="school-links"><li><a href="http://arts-sciences.buffalo.edu/">College of Arts and Sciences</a></li></ul><ul class="pervasive-links"><li><a href="//www.buffalo.edu">UB Home</a></li><li><a href="//www.buffalo.edu/maps">Maps</a></li><li><a href="//www.buffalo.edu/directory/">UB Directory</a></li></ul></div><div class="main theme-blue brand-extension lines-1"><div class="lockup"><a href="//www.buffalo.edu"> <i class="icon icon-ub-logo"></i><span class="ada-hidden">University at Buffalo</span> <span class="logo"> <img class="black" src="/v-be9166b6b4a1ea7e5771e2eba1d410cf/etc.clientlibs/wci/components/block/header/clientlibs/resources/ub-logo-black.png" alt="" width="181" height="20"/> </span> </a><div class="mobile-links" data-set="header-links"></div><a class="title" href="/cas/math.html">Department of Mathematics</a></div><div class="social" data-set="headersocial"></div><div class="tasknav" data-set="tasknav"><div class="buttoncomponent sidebyside orange"><a href="http://www.buffalo.edu/ub_admissions/apply-now.html" target="_blank"> Apply to UB </a></div><div class="buttoncomponent sidebyside blue"><a href="http://www.buffalo.edu/cas/math/about-us/contact-us.html"> Contact Us </a></div><div class="buttoncomponent sidebyside green"><a href="https://ubfoundation.buffalo.edu/giving/?gift_allocation=01-3-0-01240" target="_blank"> Support UB Math </a></div></div></div></div></div><div class="reference parbase section"><div class="unstructuredpage page basicpage"><div class="par parsys "><div class="list parbase section"><div id="ubcms-gen-1682411" data-columnize-row="1"><ul class="list-style-detail" data-columnize="1"><li><div class="long-term-alert-banner"><div class="text parbase section"><p><b>COVID-19 UPDATES • 3/4/2022</b></p><ul><li><a href="/coronavirus/latest-update.html">UB lifts vaccination policy for campus events</a></li></ul></div></div></li></ul></div><script>\n UBCMS.list.listlimit(\'ubcms\\u002Dgen\\u002D1682411\', \'100\',\n \'100\');\n </script></div><script>UBCMS.longTermAlert.init()\n</script></div></div><div contenttreeid="reference" contenttreestatus="Not published" style="display:none;"></div></div><div class="mobilemenu section"><!--noindex--><nav aria-label="mobile navigation menu"><ul><li class="mobileheader-button-menu" style="display: none"><a href="#">Menu</a></li><li class="mobileheader-button-search" style="display: none"><a href="#">Search</a></li></ul></nav><!--endnoindex--><div id="mobile-search" class="menu"><div id="mobile-search-inner" class="menu-inner" data-set="mobile-search"></div></div><div id="mobile-menu" class="menu"><div class="menu-inner"><div id="mobile-menu-inner"><div class="loading"><!--noindex-->Loading menu...<!--endnoindex--></div></div><div class="tasknav" data-set="tasknav"></div><div class="headersocial" data-set="headersocial"></div></div></div><script>\n jQuery(\'.mobileheader-button-menu\').removeAttr(\'style\');\n jQuery(document).ready(function() {\n if ($(\'.topnav .search .search-content\').length > 0) {\n $(\'.mobileheader-button-search\').removeAttr(\'style\');\n }\n });\n UBCMS.rwd.mobileMenu.load(\'\\/content\\/cas\\/math\\/jcr:content.nav.html\', \'https:\\/\\/www.buffalo.edu\\/cas\\/math\\/people\\/grad-directory.html\');\n</script></div><div class="topnav section"><nav class="topnav-inner" aria-label="site navigation"><div class="main"><ul class="menu"><li class="first theme-secondary theme-standard-gray"><a id="ubcms-gen-1682414" aria-haspopup="true" href="/cas/math/about-us.html"><span class="container">About</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1682414"><ul class="submenu clearfix"><li class="first"><a aria-label="About:Why Choose Us?" href="/cas/math/about-us/why-choose.html">Why Choose Us?</a></li><li><a aria-label="About:Our Mission" href="/cas/math/about-us/our-mission.html">Our Mission</a></li><li><a aria-label="About:Our Alumni, Students, and Faculty" href="/cas/math/about-us/our-alumni.html">Our Alumni, Students, and Faculty</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Our Alumni, Students, and Faculty:Our Alumni" href="/cas/math/about-us/our-alumni/our-alumni.html">Our Alumni</a></li><li><a aria-label="Our Alumni, Students, and Faculty:Our Students" href="/cas/math/about-us/our-alumni/our-students.html">Our Students</a></li><li class="last"><a aria-label="Our Alumni, Students, and Faculty:Our Faculty" href="/cas/math/about-us/our-alumni/our-faculty.html">Our Faculty</a></li></ul></div></li><li><a aria-label="About:Memberships" href="/cas/math/about-us/memberships.html">Memberships</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Memberships:American Mathematical Society" href="/cas/math/about-us/memberships/AMS.html">American Mathematical Society</a></li><li><a aria-label="Memberships:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li><li class="last"><a aria-label="Memberships:Mathematical Sciences Research Institute" href="/cas/math/about-us/memberships/MSRI.html">Mathematical Sciences Research Institute</a></li></ul></div></li><li><a aria-label="About:Mathematicians of the African Diaspora" href="/cas/math/about-us/mathematicians-of-the-african-diaspora.html">Mathematicians of the African Diaspora</a></li><li><a aria-label="About:About the University" href="/cas/math/about-us/about-the-university.html">About the University</a></li><li><a aria-label="About:About Buffalo-Niagara" href="/cas/math/about-us/the-buffalo-niagara-region.html">About Buffalo-Niagara</a></li><li><a aria-label="About:Visiting UB" href="/cas/math/news-events/visiting.html">Visiting UB</a></li><li class="last"><a aria-label="About:Contact Us" href="/cas/math/about-us/contact-us.html">Contact Us</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray active-trail"><a id="ubcms-gen-1682416" aria-haspopup="true" href="/cas/math/people.html"><span class="container">People</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1682416"><ul class="submenu clearfix"><li class="first"><a aria-label="People:Faculty" href="/cas/math/people/faculty.html">Faculty</a></li><li><a aria-label="People:Staff" href="/cas/math/people/staff_directory.html">Staff</a></li><li><a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html">Emeriti Faculty</a></li><li><a aria-label="People:Instructors" href="/cas/math/people/instructors.html">Instructors</a></li><li><a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html">Visiting Scholars</a></li><li class="active-trail"><a class="active" aria-label="People:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></li><li class="last"><a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html">Alumni</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li><a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li><li class="last"><a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to Present</a></li></ul></div></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-1682418" aria-haspopup="true" href="/cas/math/research.html"><span class="container">Research</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1682418"><ul class="submenu clearfix"><li class="first"><a aria-label="Research:Algebra" href="/cas/math/research/algebra.html">Algebra</a></li><li><a aria-label="Research:Analysis" href="/cas/math/research/analysis.html">Analysis</a></li><li><a aria-label="Research:Applied Mathematics" href="/cas/math/research/applied-mathematics.html">Applied Mathematics</a></li><li><a aria-label="Research:Geometry and Topology " href="/cas/math/research/geometry-topology.html">Geometry and Topology </a></li><li class="last"><a aria-label="Research:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html">Undergraduate Research</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-1682420" aria-haspopup="true" href="/cas/math/ug.html"><span class="container">Undergraduate</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1682420"><ul class="submenu clearfix"><li class="first"><a aria-label="Undergraduate:Undergraduate Programs" href="/cas/math/ug/undergraduate-programs.html">Undergraduate Programs</a></li><li><a aria-label="Undergraduate:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html">Undergraduate Research</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Undergraduate Research:Special Research Projects" href="/cas/math/ug/undergraduate-research/special-projects.html">Special Research Projects</a></li><li class="last"><a aria-label="Undergraduate Research:Summer Math Scholarship" href="/cas/math/ug/undergraduate-research/summer.html">Summer Math Scholarship</a></li></ul></div></li><li><a aria-label="Undergraduate:Honors, Awards, and Scholarships" href="/cas/math/ug/honors--awards--and-scholarships.html">Honors, Awards, and Scholarships</a></li><li><a aria-label="Undergraduate:Undergraduate Courses" href="/cas/math/ug/ug-courses.html">Undergraduate Courses</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Undergraduate Courses:Sample Syllabi" href="/cas/math/ug/ug-courses/syllabi.html">Sample Syllabi</a></li><li><a aria-label="Undergraduate Courses:MTH 121 and 122 Textbook" href="/cas/math/ug/ug-courses/mth121-122-textbook.html">MTH 121 and 122 Textbook</a></li><li class="last"><a aria-label="Undergraduate Courses:MTH 306 Textbook" href="/cas/math/ug/ug-courses/mth-306-textbook.html">MTH 306 Textbook</a></li></ul></div></li><li><a aria-label="Undergraduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home">Directed Reading Program</a></li><li><a aria-label="Undergraduate:Mathematics Resources" href="/cas/math/ug/resources.html">Mathematics Resources</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Mathematics Resources:Mathematics Placement Exam" href="/cas/math/ug/resources/mathplacement.html">Mathematics Placement Exam</a></li><li><a aria-label="Mathematics Resources:Mathematics Placement Exam Frequently Asked Questions" href="/cas/math/ug/resources/MPEFAQ.html">Mathematics Placement Exam Frequently Asked Questions</a></li><li class="last"><a aria-label="Mathematics Resources:Force Registration" href="/cas/math/ug/resources/force-registration.html">Force Registration</a></li></ul></div></li><li><a aria-label="Undergraduate:Mathematics Help Center" href="/cas/math/ug/help-center.html">Mathematics Help Center</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first last"><a aria-label="Mathematics Help Center:Online Help Sessions" href="/content/cas/math/ug/help-center/zoom-pw.html">Online Help Sessions</a></li></ul></div></li><li class="last"><a aria-label="Undergraduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-1682422" aria-haspopup="true" href="/cas/math/grad.html"><span class="container">Graduate</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1682422"><ul class="submenu clearfix"><li class="first"><a aria-label="Graduate:Master\'s Program" href="/cas/math/grad/master-program.html">Master\'s Program</a></li><li><a aria-label="Graduate:Doctoral Program (PhD)" href="/cas/math/grad/doctoral-program.html">Doctoral Program (PhD)</a></li><li><a aria-label="Graduate:Request Information" href="/cas/math/grad/request-information.html">Request Information</a></li><li><a aria-label="Graduate:Admissions" href="/cas/math/grad/grad-admissions.html">Admissions</a></li><li><a aria-label="Graduate:Courses" href="/cas/math/grad/grad-courses.html">Courses</a></li><li><a aria-label="Graduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home">Directed Reading Program</a></li><li><a aria-label="Graduate:Graduate Research" href="/cas/math/grad/grad-research.html">Graduate Research</a></li><li><a aria-label="Graduate:Fellowships, Scholarships, Awards" href="/cas/math/grad/fellowships-awards.html">Fellowships, Scholarships, Awards</a></li><li><a aria-label="Graduate:PhD Recipients, 2010 to present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to present</a></li><li><a aria-label="Graduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li><li><a aria-label="Graduate:Graduate Student Lecture Series" href="/cas/math/grad/gsls.html">Graduate Student Lecture Series</a></li><li class="last active-trail"><a aria-label="Graduate:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-1682424" aria-haspopup="true" href="/cas/math/courses.html"><span class="container">Courses</span></a></li><li class="last theme-secondary theme-standard-gray"><a id="ubcms-gen-1682425" aria-haspopup="true" href="/cas/math/news-events/news.html"><span class="container">News & Events</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1682425"><ul class="submenu clearfix"><li class="first"><a aria-label="News & Events:News" href="/cas/math/news-events/news.html">News</a></li><li><a aria-label="News & Events:Events " href="/cas/math/news-events/calendar.html">Events </a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Events :Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li class="last"><a aria-label="Events :Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li></ul></div></li><li><a aria-label="News & Events:Myhill Lecture Series" href="/cas/math/news-events/myhill.html">Myhill Lecture Series</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Myhill Lecture Series:Laura DeMarco, 2019" href="/cas/math/news-events/myhill/laura-demarco.html">Laura DeMarco, 2019</a></li><li><a aria-label="Myhill Lecture Series:Mark Newman, 2018" href="/cas/math/news-events/myhill/mark-newman.html">Mark Newman, 2018</a></li><li><a aria-label="Myhill Lecture Series:Guoliang Yu, 2017" href="/cas/math/news-events/myhill/guoliangyu.html">Guoliang Yu, 2017</a></li><li><a aria-label="Myhill Lecture Series:Gopal Prasad, 2016" href="/cas/math/news-events/myhill/gopal-prasad.html">Gopal Prasad, 2016</a></li><li><a aria-label="Myhill Lecture Series:Ciprian Manolescu, 2015" href="/cas/math/news-events/myhill/ciprian-manolescu.html">Ciprian Manolescu, 2015</a></li><li><a aria-label="Myhill Lecture Series:Percy A. Deift, 2014" href="/cas/math/news-events/myhill/percy-deift.html">Percy A. Deift, 2014</a></li><li class="last"><a aria-label="Myhill Lecture Series:Peter Sarnak, 2013" href="/cas/math/news-events/myhill/peter-sarnak.html">Peter Sarnak, 2013</a></li></ul></div></li><li><a aria-label="News & Events:NERCCS 2020" href="/cas/math/news-events/nerccs-2020.html">NERCCS 2020</a></li><li><a aria-label="News & Events:News & Events Archive" href="/cas/math/news-events/archives.html">News & Events Archive</a></li><li class="last"><a aria-label="News & Events:Visiting UB" href="/cas/math/news-events/visiting.html">Visiting UB</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li></ul></div><div class="right"><div class="search"><!--noindex--><div class="search-menu" tabindex="0"><div class="search-label">Search</div><!-- Uses appendAround.js script to transfer this search form to mobile nav menu via data-set attribute. --><div class="search-content" data-set="mobile-search"><form class="search-form" method="GET" action="/cas/math/searchresults.html" onsubmit="return this.q.value != \'\'"><div class="search-container" role="search"><input autocomplete="off" id="ubcms-gen-1682427" class="search-input" name="q" type="text" placeholder="Search" aria-label="Search"/> <button class="search-submit" type="submit" value="Search" aria-label="Search"></button></div></form></div></div><!--endnoindex--></div><div class="audiencenav list parbase"><div tabindex="0" class="audiencenav-wrapper"><div class="label">Info For</div><ul><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/information-for-students.html"> Current Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/ug/undergraduate-programs.html"> Future Undergraduate Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/grad.html"> Future Graduate Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/information-for-faculty-staff.html"> Faculty & Staff </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/people/alumni-friends.html"> Alumni & Friends </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> Diversity, Equity, and Inclusive Excellence Resources </a></li></ul></div></div></div></nav><script>$(".topnav").accessibleDropDown();</script></div></div></div><div contenttreeid="innerheader" contenttreestatus="Not published" style="display:none;"></div></div></header><div id="columns" class="two-column clearfix"><div class="columns-bg columns-bg-1"><div class="columns-bg columns-bg-2"><div class="columns-bg columns-bg-3"><div class="columns-bg columns-bg-4"><div id="left"><div class="leftnav"><nav class="inner" aria-label="section navigation"><div class="title"><a href="/cas/math/people.html"><span class="title">People</span></a></div><ul class="menu nav-level-1"><li class="first"><a aria-label="People:Faculty" href="/cas/math/people/faculty.html">Faculty</a></li><li><a aria-label="People:Staff" href="/cas/math/people/staff_directory.html">Staff</a></li><li><a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html">Emeriti Faculty</a></li><li><a aria-label="People:Instructors" href="/cas/math/people/instructors.html">Instructors</a></li><li><a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html">Visiting Scholars</a></li><li class="active-trail"><span><a class="active" aria-label="People:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></span></li><li class="last expand-submenu"><a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html">Alumni</a><ul class="menu nav-level-2"><li class="first expand-submenu"><a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li class="expand-submenu"><a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li><li class="last expand-submenu"><a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to Present</a></li></ul></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></nav></div><div class="mobile-left-col hide-in-narrow" data-set="mobile-center-bottom-or-right-top"><div class="leftcol parsys iparsys" role="complementary"><div class="section"><div class="new"></div></div><div class="iparys_inherited"><div class="leftcol iparsys parsys"><div class="flexmodule imagebase section"><div id="ubcms-gen-1682430" class="flexmodule-inner "><div class="title"><h2>Diversity, Equity, and Inclusive Excellence Resources</h2></div><div class="teaser teaser-block flexmodule-style flexmodule-style-largeimg"><div class="teaser-inner"><div class="teaser-images"><div class="teaser-image"><a href="http://www.buffalo.edu/inclusion/resources/IXResources.html" target="_blank"><noscript><picture contenttreeid=\'flexmodule\' contenttreestatus=\'Not published\'><source type="image/png" media="(max-width: 568px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x"><source type="image/png" media="(max-width: 720px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png"><source type="image/png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"><img height="131" alt="Diversity, Equity, and Inclusive Excellence Resources. " width="209" class="img-209 img-209x131 cq-dd-image" src="/content/cas/math/people/_jcr_content/leftcol/flexmodule.img.209.131.png/1607108331977.png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"></picture></noscript><picture class="no-display" contenttreeid=\'flexmodule\' contenttreestatus=\'Not published\'><source type="image/png" media="(max-width: 568px)" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x"><source type="image/png" media="(max-width: 720px)" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png"><source type="image/png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"><img height="131" alt="Diversity, Equity, and Inclusive Excellence Resources. " width="209" class="img-209 img-209x131 cq-dd-image lazyload" data-src="/content/cas/math/people/jcr%3acontent/leftcol/flexmodule.img.209.131.png/1607108331977.png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></a></div></div><div class="teaser-content"><div class="teaser-body"><p>UB is committed to achieving inclusive excellence in a deliberate, intentional and coordinated fashion, embedding it in every aspect of our operations. We aspire to foster a healthy, productive, ethical, fair, and affirming campus community to allow all students, faculty and staff to thrive and realize their full potential. <br/></p></div><div class="teaser-links"><div class="list"><div id="ubcms-gen-1682431" data-columnize-row="1"><ul class="link-list" data-columnize="1"><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/promoting-equal-employment-opportunity-and-diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Promoting Equal Employment Opportunity and Diversity</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Inclusive Excellence Resources</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/toolkits_trainings.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Toolkits</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/studentlife/who-we-are/departments/diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">UB Intercultural and Diversity Center</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/diversity-innovation.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">UB Center for Diversity Innovation</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/external-resources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">External Resources</span> </span> </a> </span></li></ul></div><div class="clearfix"></div><script>\n UBCMS.list.listlimit(\'ubcms\\u002Dgen\\u002D1682431\', \'100\',\n \'100\');\n </script></div></div></div></div><div class="teaser-clear"></div></div></div><div class="flexmodule-clear"></div></div></div></div></div></div></div><script>\n (function() {\n var $firstLeftIparsysInherited = $(\'#left .iparys_inherited\').eq(0);\n var $firstLeftIparsysSection = $(\'#left > .iparsys:first-child > .section:first-child\');\n var $mcbort = $(\'.mobile-center-bottom-or-right-top\');\n\n if ($firstLeftIparsysInherited.length && $firstLeftIparsysInherited.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $firstLeftIparsysInherited.addClass(\'empty\');\n \n if ($firstLeftIparsysSection.length && $firstLeftIparsysSection.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $firstLeftIparsysSection.addClass(\'empty\');\n \n if ($mcbort.length && $mcbort.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $mcbort.addClass(\'empty\');\n\n $(\'[role=complementary]\').each(function() {\n var $this = $(this);\n if ($this.children().filter(\':not(.empty)\').filter(\':not(:empty)\').length === 0)\n $this.removeAttr(\'role\');\n });\n\n if ($(\'.leftcol[role=complementary]\').length > 0 && $(\'#right[role=complementary]\').length > 0) {\n $(\'.leftcol[role=complementary]\').attr(\'aria-label\', \'left column\');\n $(\'#right[role=complementary]\').attr(\'aria-label\', \'right column\');\n }\n })();\n </script><div id="skip-to-content"></div><div id="center" role="main"><div class="mobile-content-top" data-set="content-top"></div><div class="par parsys"><div class="title section"><h1 onpaste="onPasteFilterPlainText(event)" id="title"> Graduate Student Directory </h1></div><div class="image-container image-container-680"><div class="image border-hide"><noscript><picture contenttreeid=\'image\' contenttreestatus=\'Not published\'><source type="image/jpeg" media="(max-width: 568px)" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.448.auto.m.q50.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.576.auto.m.q50.jpg/1629919606956.jpg 2x"><source type="image/jpeg" media="(max-width: 720px)" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.688.auto.q80.jpg/1629919606956.jpg"><source type="image/jpeg" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.680.auto.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"><img alt="1. " width="680" class="img-680 cq-dd-image" src="/content/cas/math/people/grad-directory/_jcr_content/par/image.img.680.auto.jpg/1629919606956.jpg" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'image\' contenttreestatus=\'Not published\'><source type="image/jpeg" media="(max-width: 568px)" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.448.auto.m.q50.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.576.auto.m.q50.jpg/1629919606956.jpg 2x"><source type="image/jpeg" media="(max-width: 720px)" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.688.auto.q80.jpg/1629919606956.jpg"><source type="image/jpeg" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.680.auto.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"><img alt="1. " width="680" class="img-680 cq-dd-image lazyload" data-src="/content/cas/math/people/grad-directory/jcr%3acontent/par/image.img.680.auto.jpg/1629919606956.jpg" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="top"> Mathematics Graduate Student Directory 2021-2022 </h2></div><div class="introtext text parbase section"><p><a href="#letter_a">A</a> | <a href="#letter_b">B</a> | <a href="#letter_c">C</a> | <a href="#letter_d">D</a> | E | <a href="#letter_f">F</a> | <a href="#letter_g">G</a> | <a href="#letter_h">H</a> | I | <a href="#letter_j">J</a> | <a href="#letter_h">K</a> | <a href="#letter_l">L</a> | <a href="#letter_m">M</a> | <a href="#letter_n">N</a> | <a href="#letter_o">O</a> | <a href="#letter_p">P</a> | Q | <a href="#letter_r">R</a> | <a href="#letter_s">S</a> | <a href="#letter_t">T</a> | <a href="#letter_u">U</a> | <a href="#letter_v">V</a> | <a href="#letter_w">W</a> | <a href="#letter_x">X</a> | <a href="#letter_y">Y</a> | <a href="#letter_z">Z</a></p></div><div class="hr hrline" style="clear:left"></div><div class="text parbase section"><p><i>Offices as listed are in the Mathematics Building, North Campus.</i></p></div><div class="hr hrline" style="clear:left"></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="title_3"> A </h2></div><div class="text parbase section"><p><b>Abeya Ranasinghe Mudiyanselage, Asela V.</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:aselavir@buffalo.edu">aselavir@buffalo.edu</a></p><p><b>Ahn, Min Woong</b><br/> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:minwoong@buffalo.edu">minwoong@buffalo.edu</a></p><p><b>Alegria, Linda</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:lindaale@buffalo.edu">lindaale@buffalo.edu</a><br/></p></div><div class="hr hrline" style="clear:left"></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_b"> B </h2></div><div class="text parbase section"><p><b>Betz, Katherine</b><br/> Office: 132 Phone: 645-8820<br/> Email: <a href="mailto:kbetz2@buffalo.edu">kbetz2@buffalo.edu</a></p><p><b>Bhaumik, Jnanajyoti</b><br/> Office: 129 Mathematics Building<br/> Phone: 645-8817<br/> Email: <a href="mailto:jnanajyo@buffalo.edu">jnanajyo@buffalo.edu</a></p><p> </p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="hr hrline" style="clear:left"></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_c"> C </h2></div><div class="text parbase section"><p><b>Cain Charles</b><br/> Email: <a href="mailto:ccain2@buffalo.edu">ccain2@buffalo.edu</a></p><p><b>Casper, Michael<br/> </b> Office: 222 Phone: 645-8779<br/> Email: <a href="mailto:mjcasper@buffalo.edu">mjcasper@buffalo.edu</a></p><p><b>Chang, Hong<br/> </b> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:hchang24@buffalo.edu">hchang24@buffalo.edu</a></p><p><b>Chen, Yen-Lin<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:yenlinch@buffalo.edu">yenlinch@buffalo.edu</a><br/></p><p><b>Cheuk, Ka Yue<br/> </b> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:kayueche@buffalo.edu">kayueche@buffalo.edu</a></p><p><b>Cosgrove, Gage (Makenzie)<br/> </b> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:gagecosg@buffalo.edu">gagecosg@buffalo.edu</a></p><p> </p></div><div class="hr hrline" style="clear:left"></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_d"> D </h2></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_e"> E </h2></div><div class="text parbase section"><p><b>Engelhardt, Carolyn<br/> </b> Email: <a href="mailto:cengelha@buffalo.edu">cengelha@buffalo.edu</a><br/></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_f"> F </h2></div><div class="text parbase section"><p><b>Fonseca dos Reis, Elohim<br/> </b> Office: 313 Phone: 645-8804<br/> Email: <a href="mailto:elohimfo@buffalo.edu">elohimfo@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_g"> G </h2></div><div class="text parbase section"><p><b>Gkogkou, Aikaterini</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:agkogkou@buffalo.edu">agkogkou@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_h"> H </h2></div><div class="text parbase section"><p><b>Haverlick, Justin<br/> </b> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:jmhaverl@buffalo.edu">jmhaverl@buffalo.edu</a></p><p><b>Herron, Amy</b><br/> Office: 135 <br/> Email: <a href="mailto:ajherron@buffalo.edu">ajherron@buffalo.edu</a></p><p><b>Hovland, Seth</b><br/> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:sethhovl@buffalo.edu">sethhovl@buffalo.edu</a></p><p><b>Hung, Tsz Fun</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:tszfunhu@buffalo.edu">tszfunhu@buffalo.edu</a></p><p><b>Hutchings, Raymond</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:rhhutchi@buffalo.edu">rhhutchi@buffalo.edu</a></p><p><b>Huynh, Bao<br/> </b> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:baohuynh@buffalo.edu">baohuynh@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_j"> J </h2></div><div class="text parbase section"><p><b>Jeong, Myeongjin<br/> </b> Office: 244<br/> Email:<a href="mailto:mjeong31@buffalo.edu">mjeong31@buffalo.edu</a></p><p><b>Jones, Raymond</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:rpjones2@buffalo.edu">rpjones2@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_k"> K </h2></div><div class="text parbase section"><p><b>Kilic, Bengier Ulgen<br/> </b> Office: 106 Phone: 645-8763<br/> Email: <a href="mailto:bengieru@buffalo.edu">bengieru@buffalo.edu</a></p><p><b>Kim, Jiseong<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:jiseongk@buffalo.edu">jiseongk@buffalo.edu</a></p><p><b>Kireyev, Dmitri</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:dmitriki@buffalo.edu">dmitriki@buffalo.edu</a><br/></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_l"> L </h2></div><div class="text parbase section"><p><b>Le, Minh Quang</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:minhquan@buffalo.edu">minhquan@buffalo.edu</a></p><p><b>Leonard, Dakota</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:dl42@buffalo.edu">dl42@buffalo.edu</a></p><p><b>Liao, Chang-Chih</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:cliao9@buffalo.edu">cliao9@buffalo.edu</a></p><p><b>Liao, Yanzhan</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:yanzhanl@buffalo.edu">yanzhanl@buffalo.edu</a></p><p><b>Liu, Ruodan</b><br/> Office: 135 Phone: 645-8832<br/> Email: <a href="mailto:rliu8@buffalo.edu">rliu8@buffalo.edu</a></p><p><b>Liu,Tianmou<br/> </b> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:tianmoul@buffalo.edu">tianmoul@buffalo.edu</a></p><p><b>Liu, Yuan</b><br/> Office: 135 Phone: 645-8832<br/> Email: <a href="mailto:yuanliu@buffalo.edu">yuanliu@buffalo.edu</a></p><p> </p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_m"> M </h2></div><div class="text parbase section"><p><b>Ma, Ning<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:nma22@buffalo.edu">nma22@buffalo.edu</a><br/></p><p><b>Ma, Renda<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:rendama@buffalo.edu">rendama@buffalo.edu</a></p><p><b>Ma, Yuqing</b><br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:yuqingma@buffalo.edu">yuqingma@buffalo.edu</a></p><p><b>Meng, Lingqi<br/> </b> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:lingqime@buffalo.edu">lingqime@buffalo.edu</a></p><p><b>Meyer, Drew</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:drewmeye@buffalo.edu">drewmeye@buffalo.edu</a></p><p><b>Montoro, Michael<br/> </b> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:mnmontor@buffalo.edu">mnmontor@buffalo.edu</a></p><p><b>Moore, Robert</b><br/> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:rcmoore@buffalo.edu">rcmoore@buffalo.edu</a><br/></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_n"> N </h2></div><div class="text parbase section"><p><b>Nguyen, Khanh Truong</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:kn55@buffalo.edu">kn55@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_o"> O </h2></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_p"> P </h2></div><div class="text parbase section"><p><b>Peng, Jun</b><br/> Office: 139 Phone: 645-8824<b><br/> </b> Email: <a href="mailto:jpeng3@buffalo.edu">jpeng3@buffalo.edu</a></p><p><b>Poste, Alex</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:apposte@buffalo.edu">apposte@buffalo.edu</a></p><p> </p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_r"> R </h2></div><div class="text parbase section"><p><b>Rantanen, Matthew<br/> </b> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:mattrant@buffalo.edu">mattrant@buffalo.edu</a></p><p><b>Rele, Adhish</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:adhishpr@buffalo.edu">adhishpr@buffalo.edu</a></p><p><b>Russell, Madison</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:merussel@buffalo.edu">merussel@buffalo.edu</a></p><p><b>Rozwood, Bud<br/> </b> Office: 125 Phone: 645-8815<b><br/> </b> Email: <a href="mailto:budrozwo@buffalo.edu">budrozwo@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_s"> S </h2></div><div class="text parbase section"><p><b>Sarkar, Sayantan<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:sayantan@buffalo.edu">sayantan@buffalo.edu</a></p><p><b>Sharma, Abhishek<br/> </b> Office: 126 Phone: 645-8816<br/> Email: aks28<a href="mailto:sayantan@buffalo.edu">@buffalo.edu</a></p><p><b>Sicuso, Luca</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:lucasicu@buffalo.edu">lucasicu@buffalo.edu</a></p><p><b>Solanki, Deepisha</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:deepisha@buffalo.edu">deepisha@buffalo.edu</a></p><p><b>Som, Bratati<br/> </b> Office: 132 Phone: 645-8820<br/> Email: <a href="mailto:bratatis@buffalo.edu">bratatis@buffalo.edu</a></p><p><b>Song, Zhao<br/> </b> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:zhaosong@buffalo.edu">zhaosong@buffalo.edu</a></p><p><b>Sullivan, Mark</b><br/> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:marksull@buffalo.edu">marksull@buffalo.edu</a></p><p><b>Sun, Yuxun</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:yuxunsun@buffalo.edu">yuxunsun@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_t"> T </h2></div><div class="text parbase section"><p><b>Thongprayoon, Chanon</b><br/> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:chanonth@buffalo.edu">chanonth@buffalo.edu</a><br/> <br/> <br/></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_u"> U </h2></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_v"> V </h2></div><div class="text parbase section"><p><b>Vadnere, Arya Abhijeet</b><br/> Office: 132 Mathematics Building<br/> Phone: 645-8820<br/> Email: <a href="mailto:aryaabhi@buffalo.edu">aryaabhi@buffalo.edu</a></p><p><b>Vinal, Gregory<br/> </b> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:chanonth@buffalo.edu">gregoryv@buffalo.edu</a></p><p> </p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_w"> W </h2></div><div class="text parbase section"><p><b>Wang, Daxun<br/> </b>Office: 141 Phone: 645-8825<br/> Email: <a href="mailto:daxunwan@buffalo.edu">daxunwan@buffalo.edu</a></p><p><b>Wang, Shiruo<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:bwang32@buffalo.edu">shiruowa@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_y"> Y </h2></div><div class="text parbase section"><p><b>Yuan, Cheng</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:chengyua@buffalo.edu">chengyua@buffalo.edu</a></p></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="letter_z"> Z </h2></div><div class="text parbase section"><p><b>Zhang, Baoming</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:baomingz@buffalo.edu">baomingz@buffalo.edu</a></p><p><b>Zhao, Bojun</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:bojunzha@buffalo.edu">bojunzha@buffalo.edu</a></p><p><b>Ziegler, Cameron</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:cz22@buffalo.edu">cz22@buffalo.edu</a></p></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div></div><div class="mobile-content-bottom" data-set="content-bottom"></div><div class="mobile-center-or-right-bottom" data-set="center-or-right-bottom"></div><div class="mobile-center-bottom-or-right-top" data-set="mobile-center-bottom-or-right-top"></div></div></div></div></div></div></div></div></div></div></div></div><footer><div class="footer inheritedreference reference parbase"><div class="footerconfigpage contentpage page basicpage"><div class="par parsys "><div class="htmlsnippet section"><div><style type="text/css">\n\n @only screen and (max-width: 720px){\n \n .simplefooter .simplefootercontents > .copyright {\n clear: both;\n position: relative;\n top: 7px;\n }\n }\n</style></div></div><div class="fatfooter section"><div class="footer-mode-simple clearfix"><a class="ub-logo-link" href="//www.buffalo.edu/"> <img class="ub-logo" src="/v-e541efb31faa2518c910054a542e1234/etc.clientlibs/wci/components/block/fatfooter/clientlibs/resources/ub-logo-175-years.png" alt="University at Buffalo The State University of New York - 175 Years: 1846-2021" width="400"/> </a><div class="footer-columns footer-columns-1"><div class="footer-column footer-column-1"><div class="col1 parsys"><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="title-1"> <a href="/cas/math.html">Department of Mathematics</a> </h2></div><div class="text parbase section"><p>244 Mathematics Building<br/> Buffalo, NY 14260-2900<br/> Phone: (716) 645-6284<br/> Fax: (716) 645-5039</p></div><div class="reference parbase section"><div class="unstructuredpage page basicpage"><div class="par parsys "><div class="hr hrline" style="clear:left"></div><div class="captiontext text parbase section"><p><b>About Our Photos and Videos:</b> Some photos or videos that appear on this site may have been taken prior to the COVID-19 pandemic and therefore may not accurately reflect current operations or adherence to <a href="https://www.buffalo.edu/coronavirus/health-and-safety.html" target="_blank">UB’s Health and Safety Guidelines</a>.<br/></p></div></div></div><div contenttreeid="reference-1" contenttreestatus="Not published" style="display:none;"></div></div></div></div></div><div class="copyright"><span class="copy"></span><script>jQuery(".copyright .copy").html("© " + (new Date()).getFullYear());</script> <a href="//www.buffalo.edu/">University at Buffalo</a>. All rights reserved. | <a href="//www.buffalo.edu/administrative-services/policy1/ub-policy-lib/privacy.html">Privacy</a> | <a href="//www.buffalo.edu/access/about-us/contact-us.html">Accessibility</a></div></div></div><div class="htmlsnippet section"><div><!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=UA-127757988-27"></script><script>\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag(\'js\', new Date());\n\n gtag(\'config\', \'UA-127757988-27\');\n</script></div></div></div></div><div contenttreeid="footer" contenttreestatus="Not published" style="display:none;"></div></div></footer></body></html>'
soup = BeautifulSoup(grads)
print(soup.prettify())
<!DOCTYPE HTML> <html class="ubcms-65" lang="en"> <!-- cmspub01 0316-120613 --> <head> <link crossorigin="" href="https://www.googletagmanager.com/" rel="preconnect"/> <link href="https://www.googletagmanager.com/" rel="dns-prefetch"/> <link href="https://connect.facebook.net/" rel="dns-prefetch"/> <link href="https://www.google-analytics.com/" rel="dns-prefetch"/> <meta content="IE=edge" http-equiv="X-UA-Compatible"/> <meta content="text/html; charset=utf-8" http-equiv="content-type"/> <meta content="width=device-width,initial-scale=1" id="meta-viewport" name="viewport"/> <script> if (screen.width > 720 && screen.width < 960) document.getElementById('meta-viewport').setAttribute('content','width=960'); </script> <script> (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-T5KRRKT'); </script> <title> Graduate Student Directory - Department of Mathematics - University at Buffalo </title> <link href="https://www.buffalo.edu/cas/math/people/grad-directory.html" rel="canonical"/> <meta content="2022-03-01" name="date"/> <meta content="Graduate Student Directory" property="og:title"/> <meta content=" A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z " property="og:description"/> <meta content="https://www.buffalo.edu/etc/designs/ubcms/clientlibs-main/images/ub-social.png.img.512.auto.png/1615975612658.png" property="og:image"/> <meta content="University at Buffalo" property="og:image:alt"/> <meta content="summary_large_image" name="twitter:card"/> <meta content="https://www.buffalo.edu/cas/math/people/grad-directory/_jcr_content/par/image.img.512.auto.jpg/1629919606956.jpg" property="thumbnail"/> <meta content="1. " property="thumbnail:alt"/> <link href="/v-5150cc622c68590719981526ed5c6b25/etc/designs/ubcms/clientlibs-privateauthor.min.5150cc622c68590719981526ed5c6b25.css" rel="stylesheet" type="text/css"/> <link href="/v-49ba143ee0d54e4b50b059d8fe0cb4d1/etc/designs/ubcms/clientlibs.min.49ba143ee0d54e4b50b059d8fe0cb4d1.css" rel="stylesheet" type="text/css"/> <link href="/v-9cc4b89851550cf5e105d25db85ba3e9/etc/designs/cas/math/css/main.css" rel="stylesheet" type="text/css"/> <script nomodule="" src="/v-a83c7a045b4a3c7a9600758298bc4ad8/etc/designs/ubcms/clientlibs-polyfills.min.a83c7a045b4a3c7a9600758298bc4ad8.js"> </script> <script src="/etc.clientlibs/clientlibs/granite/jquery.min.cee8557e8779d371fe722bbcdd3b3eb7.js"> </script> <script src="/v-90b621c54f984dacfd1d096327d757da/etc/designs/ubcms/clientlibs.min.90b621c54f984dacfd1d096327d757da.js"> </script> <style> body.page #page, body.page .page-inner {background-color:#FFFFFF} </style> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-67291618-1', 'auto');ga('send', 'pageview'); </script> <style> img.lazyload,img.lazyloading{position:relative;background:#EEE} img.lazyload:before,img.lazyloading:before{content:"";background:#EEE;position:absolute;top:0;left:0;bottom:0;right:0} </style> </head> <body class="contentpage page"> <noscript> <iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-T5KRRKT" style="display:none;visibility:hidden" width="0"> </iframe> </noscript> <nav aria-label="skip to content"> <a href="#skip-to-content" id="skip-to-content-link"> Skip to Content </a> </nav> <div> </div> <div id="page"> <div class="page-inner"> <div class="page-inner-1"> <div class="page-inner-2"> <div class="page-inner-2a"> </div> <div class="page-inner-3"> <header> <div class="innerheader inheritedreference reference parbase"> <div class="headerconfigpage contentpage page basicpage"> <div class="par parsys"> <div class="alertbanner reference parbase section"> <div contenttreeid="alertbanner" contenttreestatus="Not published" style="display:none;"> </div> <script> jQuery('.cap-message').detach().insertBefore('#page').wrap('<section aria-label="UB Alert">'); </script> </div> <div class="header section"> <style> .innerheader { padding-top: 158px } .header { height: 158px } .header .main { height: 134px } </style> <div> <div class="top theme-blue" data-set="header-links"> <ul class="school-links"> <li> <a href="http://arts-sciences.buffalo.edu/"> College of Arts and Sciences </a> </li> </ul> <ul class="pervasive-links"> <li> <a href="//www.buffalo.edu"> UB Home </a> </li> <li> <a href="//www.buffalo.edu/maps"> Maps </a> </li> <li> <a href="//www.buffalo.edu/directory/"> UB Directory </a> </li> </ul> </div> <div class="main theme-blue brand-extension lines-1"> <div class="lockup"> <a href="//www.buffalo.edu"> <i class="icon icon-ub-logo"> </i> <span class="ada-hidden"> University at Buffalo </span> <span class="logo"> <img alt="" class="black" height="20" src="/v-be9166b6b4a1ea7e5771e2eba1d410cf/etc.clientlibs/wci/components/block/header/clientlibs/resources/ub-logo-black.png" width="181"/> </span> </a> <div class="mobile-links" data-set="header-links"> </div> <a class="title" href="/cas/math.html"> Department of Mathematics </a> </div> <div class="social" data-set="headersocial"> </div> <div class="tasknav" data-set="tasknav"> <div class="buttoncomponent sidebyside orange"> <a href="http://www.buffalo.edu/ub_admissions/apply-now.html" target="_blank"> Apply to UB </a> </div> <div class="buttoncomponent sidebyside blue"> <a href="http://www.buffalo.edu/cas/math/about-us/contact-us.html"> Contact Us </a> </div> <div class="buttoncomponent sidebyside green"> <a href="https://ubfoundation.buffalo.edu/giving/?gift_allocation=01-3-0-01240" target="_blank"> Support UB Math </a> </div> </div> </div> </div> </div> <div class="reference parbase section"> <div class="unstructuredpage page basicpage"> <div class="par parsys"> <div class="list parbase section"> <div data-columnize-row="1" id="ubcms-gen-1682411"> <ul class="list-style-detail" data-columnize="1"> <li> <div class="long-term-alert-banner"> <div class="text parbase section"> <p> <b> COVID-19 UPDATES • 3/4/2022 </b> </p> <ul> <li> <a href="/coronavirus/latest-update.html"> UB lifts vaccination policy for campus events </a> </li> </ul> </div> </div> </li> </ul> </div> <script> UBCMS.list.listlimit('ubcms\u002Dgen\u002D1682411', '100', '100'); </script> </div> <script> UBCMS.longTermAlert.init() </script> </div> </div> <div contenttreeid="reference" contenttreestatus="Not published" style="display:none;"> </div> </div> <div class="mobilemenu section"> <!--noindex--> <nav aria-label="mobile navigation menu"> <ul> <li class="mobileheader-button-menu" style="display: none"> <a href="#"> Menu </a> </li> <li class="mobileheader-button-search" style="display: none"> <a href="#"> Search </a> </li> </ul> </nav> <!--endnoindex--> <div class="menu" id="mobile-search"> <div class="menu-inner" data-set="mobile-search" id="mobile-search-inner"> </div> </div> <div class="menu" id="mobile-menu"> <div class="menu-inner"> <div id="mobile-menu-inner"> <div class="loading"> <!--noindex--> Loading menu... <!--endnoindex--> </div> </div> <div class="tasknav" data-set="tasknav"> </div> <div class="headersocial" data-set="headersocial"> </div> </div> </div> <script> jQuery('.mobileheader-button-menu').removeAttr('style'); jQuery(document).ready(function() { if ($('.topnav .search .search-content').length > 0) { $('.mobileheader-button-search').removeAttr('style'); } }); UBCMS.rwd.mobileMenu.load('\/content\/cas\/math\/jcr:content.nav.html', 'https:\/\/www.buffalo.edu\/cas\/math\/people\/grad-directory.html'); </script> </div> <div class="topnav section"> <nav aria-label="site navigation" class="topnav-inner"> <div class="main"> <ul class="menu"> <li class="first theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/about-us.html" id="ubcms-gen-1682414"> <span class="container"> About </span> </a> <div aria-labelledby="ubcms-gen-1682414" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="About:Why Choose Us?" href="/cas/math/about-us/why-choose.html"> Why Choose Us? </a> </li> <li> <a aria-label="About:Our Mission" href="/cas/math/about-us/our-mission.html"> Our Mission </a> </li> <li> <a aria-label="About:Our Alumni, Students, and Faculty" href="/cas/math/about-us/our-alumni.html"> Our Alumni, Students, and Faculty </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Our Alumni, Students, and Faculty:Our Alumni" href="/cas/math/about-us/our-alumni/our-alumni.html"> Our Alumni </a> </li> <li> <a aria-label="Our Alumni, Students, and Faculty:Our Students" href="/cas/math/about-us/our-alumni/our-students.html"> Our Students </a> </li> <li class="last"> <a aria-label="Our Alumni, Students, and Faculty:Our Faculty" href="/cas/math/about-us/our-alumni/our-faculty.html"> Our Faculty </a> </li> </ul> </div> </li> <li> <a aria-label="About:Memberships" href="/cas/math/about-us/memberships.html"> Memberships </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Memberships:American Mathematical Society" href="/cas/math/about-us/memberships/AMS.html"> American Mathematical Society </a> </li> <li> <a aria-label="Memberships:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html"> Association for Women in Mathematics </a> </li> <li class="last"> <a aria-label="Memberships:Mathematical Sciences Research Institute" href="/cas/math/about-us/memberships/MSRI.html"> Mathematical Sciences Research Institute </a> </li> </ul> </div> </li> <li> <a aria-label="About:Mathematicians of the African Diaspora" href="/cas/math/about-us/mathematicians-of-the-african-diaspora.html"> Mathematicians of the African Diaspora </a> </li> <li> <a aria-label="About:About the University" href="/cas/math/about-us/about-the-university.html"> About the University </a> </li> <li> <a aria-label="About:About Buffalo-Niagara" href="/cas/math/about-us/the-buffalo-niagara-region.html"> About Buffalo-Niagara </a> </li> <li> <a aria-label="About:Visiting UB" href="/cas/math/news-events/visiting.html"> Visiting UB </a> </li> <li class="last"> <a aria-label="About:Contact Us" href="/cas/math/about-us/contact-us.html"> Contact Us </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray active-trail"> <a aria-haspopup="true" href="/cas/math/people.html" id="ubcms-gen-1682416"> <span class="container"> People </span> </a> <div aria-labelledby="ubcms-gen-1682416" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="People:Faculty" href="/cas/math/people/faculty.html"> Faculty </a> </li> <li> <a aria-label="People:Staff" href="/cas/math/people/staff_directory.html"> Staff </a> </li> <li> <a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html"> Emeriti Faculty </a> </li> <li> <a aria-label="People:Instructors" href="/cas/math/people/instructors.html"> Instructors </a> </li> <li> <a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html"> Visiting Scholars </a> </li> <li class="active-trail"> <a aria-label="People:Graduate Student Directory" class="active" href="/cas/math/people/grad-directory.html"> Graduate Student Directory </a> </li> <li class="last"> <a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html"> Alumni </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html"> Class of 2021 </a> </li> <li> <a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html"> Class of 2020 </a> </li> <li class="last"> <a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html"> PhD Recipients, 2010 to Present </a> </li> </ul> </div> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/research.html" id="ubcms-gen-1682418"> <span class="container"> Research </span> </a> <div aria-labelledby="ubcms-gen-1682418" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="Research:Algebra" href="/cas/math/research/algebra.html"> Algebra </a> </li> <li> <a aria-label="Research:Analysis" href="/cas/math/research/analysis.html"> Analysis </a> </li> <li> <a aria-label="Research:Applied Mathematics" href="/cas/math/research/applied-mathematics.html"> Applied Mathematics </a> </li> <li> <a aria-label="Research:Geometry and Topology " href="/cas/math/research/geometry-topology.html"> Geometry and Topology </a> </li> <li class="last"> <a aria-label="Research:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html"> Undergraduate Research </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/ug.html" id="ubcms-gen-1682420"> <span class="container"> Undergraduate </span> </a> <div aria-labelledby="ubcms-gen-1682420" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="Undergraduate:Undergraduate Programs" href="/cas/math/ug/undergraduate-programs.html"> Undergraduate Programs </a> </li> <li> <a aria-label="Undergraduate:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html"> Undergraduate Research </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Undergraduate Research:Special Research Projects" href="/cas/math/ug/undergraduate-research/special-projects.html"> Special Research Projects </a> </li> <li class="last"> <a aria-label="Undergraduate Research:Summer Math Scholarship" href="/cas/math/ug/undergraduate-research/summer.html"> Summer Math Scholarship </a> </li> </ul> </div> </li> <li> <a aria-label="Undergraduate:Honors, Awards, and Scholarships" href="/cas/math/ug/honors--awards--and-scholarships.html"> Honors, Awards, and Scholarships </a> </li> <li> <a aria-label="Undergraduate:Undergraduate Courses" href="/cas/math/ug/ug-courses.html"> Undergraduate Courses </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Undergraduate Courses:Sample Syllabi" href="/cas/math/ug/ug-courses/syllabi.html"> Sample Syllabi </a> </li> <li> <a aria-label="Undergraduate Courses:MTH 121 and 122 Textbook" href="/cas/math/ug/ug-courses/mth121-122-textbook.html"> MTH 121 and 122 Textbook </a> </li> <li class="last"> <a aria-label="Undergraduate Courses:MTH 306 Textbook" href="/cas/math/ug/ug-courses/mth-306-textbook.html"> MTH 306 Textbook </a> </li> </ul> </div> </li> <li> <a aria-label="Undergraduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home"> Directed Reading Program </a> </li> <li> <a aria-label="Undergraduate:Mathematics Resources" href="/cas/math/ug/resources.html"> Mathematics Resources </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Mathematics Resources:Mathematics Placement Exam" href="/cas/math/ug/resources/mathplacement.html"> Mathematics Placement Exam </a> </li> <li> <a aria-label="Mathematics Resources:Mathematics Placement Exam Frequently Asked Questions" href="/cas/math/ug/resources/MPEFAQ.html"> Mathematics Placement Exam Frequently Asked Questions </a> </li> <li class="last"> <a aria-label="Mathematics Resources:Force Registration" href="/cas/math/ug/resources/force-registration.html"> Force Registration </a> </li> </ul> </div> </li> <li> <a aria-label="Undergraduate:Mathematics Help Center" href="/cas/math/ug/help-center.html"> Mathematics Help Center </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first last"> <a aria-label="Mathematics Help Center:Online Help Sessions" href="/content/cas/math/ug/help-center/zoom-pw.html"> Online Help Sessions </a> </li> </ul> </div> </li> <li class="last"> <a aria-label="Undergraduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html"> Association for Women in Mathematics </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/grad.html" id="ubcms-gen-1682422"> <span class="container"> Graduate </span> </a> <div aria-labelledby="ubcms-gen-1682422" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="Graduate:Master's Program" href="/cas/math/grad/master-program.html"> Master's Program </a> </li> <li> <a aria-label="Graduate:Doctoral Program (PhD)" href="/cas/math/grad/doctoral-program.html"> Doctoral Program (PhD) </a> </li> <li> <a aria-label="Graduate:Request Information" href="/cas/math/grad/request-information.html"> Request Information </a> </li> <li> <a aria-label="Graduate:Admissions" href="/cas/math/grad/grad-admissions.html"> Admissions </a> </li> <li> <a aria-label="Graduate:Courses" href="/cas/math/grad/grad-courses.html"> Courses </a> </li> <li> <a aria-label="Graduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home"> Directed Reading Program </a> </li> <li> <a aria-label="Graduate:Graduate Research" href="/cas/math/grad/grad-research.html"> Graduate Research </a> </li> <li> <a aria-label="Graduate:Fellowships, Scholarships, Awards" href="/cas/math/grad/fellowships-awards.html"> Fellowships, Scholarships, Awards </a> </li> <li> <a aria-label="Graduate:PhD Recipients, 2010 to present" href="/cas/math/grad/PhD-recipients.html"> PhD Recipients, 2010 to present </a> </li> <li> <a aria-label="Graduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html"> Association for Women in Mathematics </a> </li> <li> <a aria-label="Graduate:Graduate Student Lecture Series" href="/cas/math/grad/gsls.html"> Graduate Student Lecture Series </a> </li> <li class="last active-trail"> <a aria-label="Graduate:Graduate Student Directory" href="/cas/math/people/grad-directory.html"> Graduate Student Directory </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/courses.html" id="ubcms-gen-1682424"> <span class="container"> Courses </span> </a> </li> <li class="last theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/news-events/news.html" id="ubcms-gen-1682425"> <span class="container"> News & Events </span> </a> <div aria-labelledby="ubcms-gen-1682425" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="News & Events:News" href="/cas/math/news-events/news.html"> News </a> </li> <li> <a aria-label="News & Events:Events " href="/cas/math/news-events/calendar.html"> Events </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Events :Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html"> Class of 2021 </a> </li> <li class="last"> <a aria-label="Events :Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html"> Class of 2020 </a> </li> </ul> </div> </li> <li> <a aria-label="News & Events:Myhill Lecture Series" href="/cas/math/news-events/myhill.html"> Myhill Lecture Series </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Myhill Lecture Series:Laura DeMarco, 2019" href="/cas/math/news-events/myhill/laura-demarco.html"> Laura DeMarco, 2019 </a> </li> <li> <a aria-label="Myhill Lecture Series:Mark Newman, 2018" href="/cas/math/news-events/myhill/mark-newman.html"> Mark Newman, 2018 </a> </li> <li> <a aria-label="Myhill Lecture Series:Guoliang Yu, 2017" href="/cas/math/news-events/myhill/guoliangyu.html"> Guoliang Yu, 2017 </a> </li> <li> <a aria-label="Myhill Lecture Series:Gopal Prasad, 2016" href="/cas/math/news-events/myhill/gopal-prasad.html"> Gopal Prasad, 2016 </a> </li> <li> <a aria-label="Myhill Lecture Series:Ciprian Manolescu, 2015" href="/cas/math/news-events/myhill/ciprian-manolescu.html"> Ciprian Manolescu, 2015 </a> </li> <li> <a aria-label="Myhill Lecture Series:Percy A. Deift, 2014" href="/cas/math/news-events/myhill/percy-deift.html"> Percy A. Deift, 2014 </a> </li> <li class="last"> <a aria-label="Myhill Lecture Series:Peter Sarnak, 2013" href="/cas/math/news-events/myhill/peter-sarnak.html"> Peter Sarnak, 2013 </a> </li> </ul> </div> </li> <li> <a aria-label="News & Events:NERCCS 2020" href="/cas/math/news-events/nerccs-2020.html"> NERCCS 2020 </a> </li> <li> <a aria-label="News & Events:News & Events Archive" href="/cas/math/news-events/archives.html"> News & Events Archive </a> </li> <li class="last"> <a aria-label="News & Events:Visiting UB" href="/cas/math/news-events/visiting.html"> Visiting UB </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> </ul> </div> <div class="right"> <div class="search"> <!--noindex--> <div class="search-menu" tabindex="0"> <div class="search-label"> Search </div> <!-- Uses appendAround.js script to transfer this search form to mobile nav menu via data-set attribute. --> <div class="search-content" data-set="mobile-search"> <form action="/cas/math/searchresults.html" class="search-form" method="GET" onsubmit="return this.q.value != ''"> <div class="search-container" role="search"> <input aria-label="Search" autocomplete="off" class="search-input" id="ubcms-gen-1682427" name="q" placeholder="Search" type="text"/> <button aria-label="Search" class="search-submit" type="submit" value="Search"> </button> </div> </form> </div> </div> <!--endnoindex--> </div> <div class="audiencenav list parbase"> <div class="audiencenav-wrapper" tabindex="0"> <div class="label"> Info For </div> <ul> <li> <a href="/cas/math/information-for-students.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Current Students </a> </li> <li> <a href="/cas/math/ug/undergraduate-programs.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Future Undergraduate Students </a> </li> <li> <a href="/cas/math/grad.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Future Graduate Students </a> </li> <li> <a href="/cas/math/information-for-faculty-staff.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Faculty & Staff </a> </li> <li> <a href="/cas/math/people/alumni-friends.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Alumni & Friends </a> </li> <li> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Diversity, Equity, and Inclusive Excellence Resources </a> </li> </ul> </div> </div> </div> </nav> <script> $(".topnav").accessibleDropDown(); </script> </div> </div> </div> <div contenttreeid="innerheader" contenttreestatus="Not published" style="display:none;"> </div> </div> </header> <div class="two-column clearfix" id="columns"> <div class="columns-bg columns-bg-1"> <div class="columns-bg columns-bg-2"> <div class="columns-bg columns-bg-3"> <div class="columns-bg columns-bg-4"> <div id="left"> <div class="leftnav"> <nav aria-label="section navigation" class="inner"> <div class="title"> <a href="/cas/math/people.html"> <span class="title"> People </span> </a> </div> <ul class="menu nav-level-1"> <li class="first"> <a aria-label="People:Faculty" href="/cas/math/people/faculty.html"> Faculty </a> </li> <li> <a aria-label="People:Staff" href="/cas/math/people/staff_directory.html"> Staff </a> </li> <li> <a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html"> Emeriti Faculty </a> </li> <li> <a aria-label="People:Instructors" href="/cas/math/people/instructors.html"> Instructors </a> </li> <li> <a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html"> Visiting Scholars </a> </li> <li class="active-trail"> <span> <a aria-label="People:Graduate Student Directory" class="active" href="/cas/math/people/grad-directory.html"> Graduate Student Directory </a> </span> </li> <li class="last expand-submenu"> <a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html"> Alumni </a> <ul class="menu nav-level-2"> <li class="first expand-submenu"> <a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html"> Class of 2021 </a> </li> <li class="expand-submenu"> <a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html"> Class of 2020 </a> </li> <li class="last expand-submenu"> <a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html"> PhD Recipients, 2010 to Present </a> </li> </ul> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </nav> </div> <div class="mobile-left-col hide-in-narrow" data-set="mobile-center-bottom-or-right-top"> <div class="leftcol parsys iparsys" role="complementary"> <div class="section"> <div class="new"> </div> </div> <div class="iparys_inherited"> <div class="leftcol iparsys parsys"> <div class="flexmodule imagebase section"> <div class="flexmodule-inner" id="ubcms-gen-1682430"> <div class="title"> <h2> Diversity, Equity, and Inclusive Excellence Resources </h2> </div> <div class="teaser teaser-block flexmodule-style flexmodule-style-largeimg"> <div class="teaser-inner"> <div class="teaser-images"> <div class="teaser-image"> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html" target="_blank"> <noscript> <picture contenttreeid="flexmodule" contenttreestatus="Not published"> <source media="(max-width: 568px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x" type="image/png"> <source media="(max-width: 720px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png" type="image/png"> <source srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" type="image/png"> <img alt="Diversity, Equity, and Inclusive Excellence Resources. " class="img-209 img-209x131 cq-dd-image" height="131" src="/content/cas/math/people/_jcr_content/leftcol/flexmodule.img.209.131.png/1607108331977.png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" width="209"/> </source> </source> </source> </picture> </noscript> <picture class="no-display" contenttreeid="flexmodule" contenttreestatus="Not published"> <source data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x" media="(max-width: 568px)" type="image/png"> <source data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png" media="(max-width: 720px)" type="image/png"> <source data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" type="image/png"> <img alt="Diversity, Equity, and Inclusive Excellence Resources. " class="img-209 img-209x131 cq-dd-image lazyload" data-src="/content/cas/math/people/jcr%3acontent/leftcol/flexmodule.img.209.131.png/1607108331977.png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" height="131" width="209"/> </source> </source> </source> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </a> </div> </div> <div class="teaser-content"> <div class="teaser-body"> <p> UB is committed to achieving inclusive excellence in a deliberate, intentional and coordinated fashion, embedding it in every aspect of our operations. We aspire to foster a healthy, productive, ethical, fair, and affirming campus community to allow all students, faculty and staff to thrive and realize their full potential. <br/> </p> </div> <div class="teaser-links"> <div class="list"> <div data-columnize-row="1" id="ubcms-gen-1682431"> <ul class="link-list" data-columnize="1"> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/promoting-equal-employment-opportunity-and-diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> Promoting Equal Employment Opportunity and Diversity </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> Inclusive Excellence Resources </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/toolkits_trainings.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> Toolkits </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/studentlife/who-we-are/departments/diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> UB Intercultural and Diversity Center </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/diversity-innovation.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> UB Center for Diversity Innovation </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/external-resources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> External Resources </span> </span> </a> </span> </li> </ul> </div> <div class="clearfix"> </div> <script> UBCMS.list.listlimit('ubcms\u002Dgen\u002D1682431', '100', '100'); </script> </div> </div> </div> </div> <div class="teaser-clear"> </div> </div> </div> <div class="flexmodule-clear"> </div> </div> </div> </div> </div> </div> </div> <script> (function() { var $firstLeftIparsysInherited = $('#left .iparys_inherited').eq(0); var $firstLeftIparsysSection = $('#left > .iparsys:first-child > .section:first-child'); var $mcbort = $('.mobile-center-bottom-or-right-top'); if ($firstLeftIparsysInherited.length && $firstLeftIparsysInherited.html().replace(/\s+|<\/?div\b[^>]*>/gi, '') === '') $firstLeftIparsysInherited.addClass('empty'); if ($firstLeftIparsysSection.length && $firstLeftIparsysSection.html().replace(/\s+|<\/?div\b[^>]*>/gi, '') === '') $firstLeftIparsysSection.addClass('empty'); if ($mcbort.length && $mcbort.html().replace(/\s+|<\/?div\b[^>]*>/gi, '') === '') $mcbort.addClass('empty'); $('[role=complementary]').each(function() { var $this = $(this); if ($this.children().filter(':not(.empty)').filter(':not(:empty)').length === 0) $this.removeAttr('role'); }); if ($('.leftcol[role=complementary]').length > 0 && $('#right[role=complementary]').length > 0) { $('.leftcol[role=complementary]').attr('aria-label', 'left column'); $('#right[role=complementary]').attr('aria-label', 'right column'); } })(); </script> <div id="skip-to-content"> </div> <div id="center" role="main"> <div class="mobile-content-top" data-set="content-top"> </div> <div class="par parsys"> <div class="title section"> <h1 id="title" onpaste="onPasteFilterPlainText(event)"> Graduate Student Directory </h1> </div> <div class="image-container image-container-680"> <div class="image border-hide"> <noscript> <picture contenttreeid="image" contenttreestatus="Not published"> <source media="(max-width: 568px)" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.448.auto.m.q50.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.576.auto.m.q50.jpg/1629919606956.jpg 2x" type="image/jpeg"> <source media="(max-width: 720px)" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.688.auto.q80.jpg/1629919606956.jpg" type="image/jpeg"> <source srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.680.auto.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x" type="image/jpeg"> <img alt="1. " class="img-680 cq-dd-image" src="/content/cas/math/people/grad-directory/_jcr_content/par/image.img.680.auto.jpg/1629919606956.jpg" srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x" width="680"/> </source> </source> </source> </picture> </noscript> <picture class="no-display" contenttreeid="image" contenttreestatus="Not published"> <source data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.448.auto.m.q50.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.576.auto.m.q50.jpg/1629919606956.jpg 2x" media="(max-width: 568px)" type="image/jpeg"> <source data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.688.auto.q80.jpg/1629919606956.jpg" media="(max-width: 720px)" type="image/jpeg"> <source data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.680.auto.jpg/1629919606956.jpg, /content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x" type="image/jpeg"> <img alt="1. " class="img-680 cq-dd-image lazyload" data-src="/content/cas/math/people/grad-directory/jcr%3acontent/par/image.img.680.auto.jpg/1629919606956.jpg" data-srcset="/content/cas/math/people/grad-directory/jcr:content/par/image.img.1360.auto.q65.jpg/1629919606956.jpg 2x" width="680"/> </source> </source> </source> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> </div> <div class="title section"> <h2 id="top" onpaste="onPasteFilterPlainText(event)"> Mathematics Graduate Student Directory 2021-2022 </h2> </div> <div class="introtext text parbase section"> <p> <a href="#letter_a"> A </a> | <a href="#letter_b"> B </a> | <a href="#letter_c"> C </a> | <a href="#letter_d"> D </a> | E | <a href="#letter_f"> F </a> | <a href="#letter_g"> G </a> | <a href="#letter_h"> H </a> | I | <a href="#letter_j"> J </a> | <a href="#letter_h"> K </a> | <a href="#letter_l"> L </a> | <a href="#letter_m"> M </a> | <a href="#letter_n"> N </a> | <a href="#letter_o"> O </a> | <a href="#letter_p"> P </a> | Q | <a href="#letter_r"> R </a> | <a href="#letter_s"> S </a> | <a href="#letter_t"> T </a> | <a href="#letter_u"> U </a> | <a href="#letter_v"> V </a> | <a href="#letter_w"> W </a> | <a href="#letter_x"> X </a> | <a href="#letter_y"> Y </a> | <a href="#letter_z"> Z </a> </p> </div> <div class="hr hrline" style="clear:left"> </div> <div class="text parbase section"> <p> <i> Offices as listed are in the Mathematics Building, North Campus. </i> </p> </div> <div class="hr hrline" style="clear:left"> </div> <div class="title section"> <h2 id="title_3" onpaste="onPasteFilterPlainText(event)"> A </h2> </div> <div class="text parbase section"> <p> <b> Abeya Ranasinghe Mudiyanselage, Asela V. </b> <br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:aselavir@buffalo.edu"> aselavir@buffalo.edu </a> </p> <p> <b> Ahn, Min Woong </b> <br/> Office: 126 Phone: 645-8816 <br/> Email: <a href="mailto:minwoong@buffalo.edu"> minwoong@buffalo.edu </a> </p> <p> <b> Alegria, Linda </b> <br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:lindaale@buffalo.edu"> lindaale@buffalo.edu </a> <br/> </p> </div> <div class="hr hrline" style="clear:left"> </div> <div class="title section"> <h2 id="letter_b" onpaste="onPasteFilterPlainText(event)"> B </h2> </div> <div class="text parbase section"> <p> <b> Betz, Katherine </b> <br/> Office: 132 Phone: 645-8820 <br/> Email: <a href="mailto:kbetz2@buffalo.edu"> kbetz2@buffalo.edu </a> </p> <p> <b> Bhaumik, Jnanajyoti </b> <br/> Office: 129 Mathematics Building <br/> Phone: 645-8817 <br/> Email: <a href="mailto:jnanajyo@buffalo.edu"> jnanajyo@buffalo.edu </a> </p> <p> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="hr hrline" style="clear:left"> </div> <div class="title section"> <h2 id="letter_c" onpaste="onPasteFilterPlainText(event)"> C </h2> </div> <div class="text parbase section"> <p> <b> Cain Charles </b> <br/> Email: <a href="mailto:ccain2@buffalo.edu"> ccain2@buffalo.edu </a> </p> <p> <b> Casper, Michael <br/> </b> Office: 222 Phone: 645-8779 <br/> Email: <a href="mailto:mjcasper@buffalo.edu"> mjcasper@buffalo.edu </a> </p> <p> <b> Chang, Hong <br/> </b> Office: 136 Phone: 645-8821 <br/> Email: <a href="mailto:hchang24@buffalo.edu"> hchang24@buffalo.edu </a> </p> <p> <b> Chen, Yen-Lin <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:yenlinch@buffalo.edu"> yenlinch@buffalo.edu </a> <br/> </p> <p> <b> Cheuk, Ka Yue <br/> </b> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:kayueche@buffalo.edu"> kayueche@buffalo.edu </a> </p> <p> <b> Cosgrove, Gage (Makenzie) <br/> </b> Office: 139 Phone: 645-8824 <br/> Email: <a href="mailto:gagecosg@buffalo.edu"> gagecosg@buffalo.edu </a> </p> <p> </p> </div> <div class="hr hrline" style="clear:left"> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_d" onpaste="onPasteFilterPlainText(event)"> D </h2> </div> <div class="title section"> <h2 id="letter_e" onpaste="onPasteFilterPlainText(event)"> E </h2> </div> <div class="text parbase section"> <p> <b> Engelhardt, Carolyn <br/> </b> Email: <a href="mailto:cengelha@buffalo.edu"> cengelha@buffalo.edu </a> <br/> </p> </div> <div class="title section"> <h2 id="letter_f" onpaste="onPasteFilterPlainText(event)"> F </h2> </div> <div class="text parbase section"> <p> <b> Fonseca dos Reis, Elohim <br/> </b> Office: 313 Phone: 645-8804 <br/> Email: <a href="mailto:elohimfo@buffalo.edu"> elohimfo@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_g" onpaste="onPasteFilterPlainText(event)"> G </h2> </div> <div class="text parbase section"> <p> <b> Gkogkou, Aikaterini </b> <br/> Office: 129 Phone: 645-8817 <br/> Email: <a href="mailto:agkogkou@buffalo.edu"> agkogkou@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_h" onpaste="onPasteFilterPlainText(event)"> H </h2> </div> <div class="text parbase section"> <p> <b> Haverlick, Justin <br/> </b> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:jmhaverl@buffalo.edu"> jmhaverl@buffalo.edu </a> </p> <p> <b> Herron, Amy </b> <br/> Office: 135 <br/> Email: <a href="mailto:ajherron@buffalo.edu"> ajherron@buffalo.edu </a> </p> <p> <b> Hovland, Seth </b> <br/> Office: 130 Phone: 645-8818 <br/> Email: <a href="mailto:sethhovl@buffalo.edu"> sethhovl@buffalo.edu </a> </p> <p> <b> Hung, Tsz Fun </b> <br/> Office: 137 Phone: 645-8822 <br/> Email: <a href="mailto:tszfunhu@buffalo.edu"> tszfunhu@buffalo.edu </a> </p> <p> <b> Hutchings, Raymond </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:rhhutchi@buffalo.edu"> rhhutchi@buffalo.edu </a> </p> <p> <b> Huynh, Bao <br/> </b> Office: 131 Phone: 645-8819 <br/> Email: <a href="mailto:baohuynh@buffalo.edu"> baohuynh@buffalo.edu </a> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_j" onpaste="onPasteFilterPlainText(event)"> J </h2> </div> <div class="text parbase section"> <p> <b> Jeong, Myeongjin <br/> </b> Office: 244 <br/> Email: <a href="mailto:mjeong31@buffalo.edu"> mjeong31@buffalo.edu </a> </p> <p> <b> Jones, Raymond </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:rpjones2@buffalo.edu"> rpjones2@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_k" onpaste="onPasteFilterPlainText(event)"> K </h2> </div> <div class="text parbase section"> <p> <b> Kilic, Bengier Ulgen <br/> </b> Office: 106 Phone: 645-8763 <br/> Email: <a href="mailto:bengieru@buffalo.edu"> bengieru@buffalo.edu </a> </p> <p> <b> Kim, Jiseong <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:jiseongk@buffalo.edu"> jiseongk@buffalo.edu </a> </p> <p> <b> Kireyev, Dmitri </b> <br/> Office: 129 Phone: 645-8817 <br/> Email: <a href="mailto:dmitriki@buffalo.edu"> dmitriki@buffalo.edu </a> <br/> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_l" onpaste="onPasteFilterPlainText(event)"> L </h2> </div> <div class="text parbase section"> <p> <b> Le, Minh Quang </b> <br/> Office: 131 Phone: 645-8819 <br/> Email: <a href="mailto:minhquan@buffalo.edu"> minhquan@buffalo.edu </a> </p> <p> <b> Leonard, Dakota </b> <br/> Office: 131 Phone: 645-8819 <br/> Email: <a href="mailto:dl42@buffalo.edu"> dl42@buffalo.edu </a> </p> <p> <b> Liao, Chang-Chih </b> <br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:cliao9@buffalo.edu"> cliao9@buffalo.edu </a> </p> <p> <b> Liao, Yanzhan </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:yanzhanl@buffalo.edu"> yanzhanl@buffalo.edu </a> </p> <p> <b> Liu, Ruodan </b> <br/> Office: 135 Phone: 645-8832 <br/> Email: <a href="mailto:rliu8@buffalo.edu"> rliu8@buffalo.edu </a> </p> <p> <b> Liu,Tianmou <br/> </b> Office: 136 Phone: 645-8821 <br/> Email: <a href="mailto:tianmoul@buffalo.edu"> tianmoul@buffalo.edu </a> </p> <p> <b> Liu, Yuan </b> <br/> Office: 135 Phone: 645-8832 <br/> Email: <a href="mailto:yuanliu@buffalo.edu"> yuanliu@buffalo.edu </a> </p> <p> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_m" onpaste="onPasteFilterPlainText(event)"> M </h2> </div> <div class="text parbase section"> <p> <b> Ma, Ning <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:nma22@buffalo.edu"> nma22@buffalo.edu </a> <br/> </p> <p> <b> Ma, Renda <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:rendama@buffalo.edu"> rendama@buffalo.edu </a> </p> <p> <b> Ma, Yuqing </b> <br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:yuqingma@buffalo.edu"> yuqingma@buffalo.edu </a> </p> <p> <b> Meng, Lingqi <br/> </b> Office: 130 Phone: 645-8818 <br/> Email: <a href="mailto:lingqime@buffalo.edu"> lingqime@buffalo.edu </a> </p> <p> <b> Meyer, Drew </b> <br/> Office: 137 Phone: 645-8822 <br/> Email: <a href="mailto:drewmeye@buffalo.edu"> drewmeye@buffalo.edu </a> </p> <p> <b> Montoro, Michael <br/> </b> Office: 126 Phone: 645-8816 <br/> Email: <a href="mailto:mnmontor@buffalo.edu"> mnmontor@buffalo.edu </a> </p> <p> <b> Moore, Robert </b> <br/> Office: 139 Phone: 645-8824 <br/> Email: <a href="mailto:rcmoore@buffalo.edu"> rcmoore@buffalo.edu </a> <br/> </p> </div> <div class="title section"> <h2 id="letter_n" onpaste="onPasteFilterPlainText(event)"> N </h2> </div> <div class="text parbase section"> <p> <b> Nguyen, Khanh Truong </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:kn55@buffalo.edu"> kn55@buffalo.edu </a> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_o" onpaste="onPasteFilterPlainText(event)"> O </h2> </div> <div class="title section"> <h2 id="letter_p" onpaste="onPasteFilterPlainText(event)"> P </h2> </div> <div class="text parbase section"> <p> <b> Peng, Jun </b> <br/> Office: 139 Phone: 645-8824 <b> <br/> </b> Email: <a href="mailto:jpeng3@buffalo.edu"> jpeng3@buffalo.edu </a> </p> <p> <b> Poste, Alex </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:apposte@buffalo.edu"> apposte@buffalo.edu </a> </p> <p> </p> </div> <div class="title section"> <h2 id="letter_r" onpaste="onPasteFilterPlainText(event)"> R </h2> </div> <div class="text parbase section"> <p> <b> Rantanen, Matthew <br/> </b> Office: 130 Phone: 645-8818 <br/> Email: <a href="mailto:mattrant@buffalo.edu"> mattrant@buffalo.edu </a> </p> <p> <b> Rele, Adhish </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:adhishpr@buffalo.edu"> adhishpr@buffalo.edu </a> </p> <p> <b> Russell, Madison </b> <br/> Office: 129 Phone: 645-8817 <br/> Email: <a href="mailto:merussel@buffalo.edu"> merussel@buffalo.edu </a> </p> <p> <b> Rozwood, Bud <br/> </b> Office: 125 Phone: 645-8815 <b> <br/> </b> Email: <a href="mailto:budrozwo@buffalo.edu"> budrozwo@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_s" onpaste="onPasteFilterPlainText(event)"> S </h2> </div> <div class="text parbase section"> <p> <b> Sarkar, Sayantan <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:sayantan@buffalo.edu"> sayantan@buffalo.edu </a> </p> <p> <b> Sharma, Abhishek <br/> </b> Office: 126 Phone: 645-8816 <br/> Email: aks28 <a href="mailto:sayantan@buffalo.edu"> @buffalo.edu </a> </p> <p> <b> Sicuso, Luca </b> <br/> Office: 131 Phone: 645-8819 <br/> Email: <a href="mailto:lucasicu@buffalo.edu"> lucasicu@buffalo.edu </a> </p> <p> <b> Solanki, Deepisha </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:deepisha@buffalo.edu"> deepisha@buffalo.edu </a> </p> <p> <b> Som, Bratati <br/> </b> Office: 132 Phone: 645-8820 <br/> Email: <a href="mailto:bratatis@buffalo.edu"> bratatis@buffalo.edu </a> </p> <p> <b> Song, Zhao <br/> </b> Office: 131 Phone: 645-8819 <br/> Email: <a href="mailto:zhaosong@buffalo.edu"> zhaosong@buffalo.edu </a> </p> <p> <b> Sullivan, Mark </b> <br/> Office: 136 Phone: 645-8821 <br/> Email: <a href="mailto:marksull@buffalo.edu"> marksull@buffalo.edu </a> </p> <p> <b> Sun, Yuxun </b> <br/> Office: 137 Phone: 645-8822 <br/> Email: <a href="mailto:yuxunsun@buffalo.edu"> yuxunsun@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_t" onpaste="onPasteFilterPlainText(event)"> T </h2> </div> <div class="text parbase section"> <p> <b> Thongprayoon, Chanon </b> <br/> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:chanonth@buffalo.edu"> chanonth@buffalo.edu </a> <br/> <br/> <br/> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_u" onpaste="onPasteFilterPlainText(event)"> U </h2> </div> <div class="title section"> <h2 id="letter_v" onpaste="onPasteFilterPlainText(event)"> V </h2> </div> <div class="text parbase section"> <p> <b> Vadnere, Arya Abhijeet </b> <br/> Office: 132 Mathematics Building <br/> Phone: 645-8820 <br/> Email: <a href="mailto:aryaabhi@buffalo.edu"> aryaabhi@buffalo.edu </a> </p> <p> <b> Vinal, Gregory <br/> </b> Office: 126 Phone: 645-8816 <br/> Email: <a href="mailto:chanonth@buffalo.edu"> gregoryv@buffalo.edu </a> </p> <p> </p> </div> <div class="title section"> <h2 id="letter_w" onpaste="onPasteFilterPlainText(event)"> W </h2> </div> <div class="text parbase section"> <p> <b> Wang, Daxun <br/> </b> Office: 141 Phone: 645-8825 <br/> Email: <a href="mailto:daxunwan@buffalo.edu"> daxunwan@buffalo.edu </a> </p> <p> <b> Wang, Shiruo <br/> </b> Office: 125 Phone: 645-8815 <br/> Email: <a href="mailto:bwang32@buffalo.edu"> shiruowa@buffalo.edu </a> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> <div class="title section"> <h2 id="letter_y" onpaste="onPasteFilterPlainText(event)"> Y </h2> </div> <div class="text parbase section"> <p> <b> Yuan, Cheng </b> <br/> Office: 137 Phone: 645-8822 <br/> Email: <a href="mailto:chengyua@buffalo.edu"> chengyua@buffalo.edu </a> </p> </div> <div class="title section"> <h2 id="letter_z" onpaste="onPasteFilterPlainText(event)"> Z </h2> </div> <div class="text parbase section"> <p> <b> Zhang, Baoming </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:baomingz@buffalo.edu"> baomingz@buffalo.edu </a> </p> <p> <b> Zhao, Bojun </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:bojunzha@buffalo.edu"> bojunzha@buffalo.edu </a> </p> <p> <b> Ziegler, Cameron </b> <br/> Office: 140 Phone: 645-8825 <br/> Email: <a href="mailto:cz22@buffalo.edu"> cz22@buffalo.edu </a> </p> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> </div> <div class="mobile-content-bottom" data-set="content-bottom"> </div> <div class="mobile-center-or-right-bottom" data-set="center-or-right-bottom"> </div> <div class="mobile-center-bottom-or-right-top" data-set="mobile-center-bottom-or-right-top"> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <footer> <div class="footer inheritedreference reference parbase"> <div class="footerconfigpage contentpage page basicpage"> <div class="par parsys"> <div class="htmlsnippet section"> <div> <style type="text/css"> @only screen and (max-width: 720px){ .simplefooter .simplefootercontents > .copyright { clear: both; position: relative; top: 7px; } } </style> </div> </div> <div class="fatfooter section"> <div class="footer-mode-simple clearfix"> <a class="ub-logo-link" href="//www.buffalo.edu/"> <img alt="University at Buffalo The State University of New York - 175 Years: 1846-2021" class="ub-logo" src="/v-e541efb31faa2518c910054a542e1234/etc.clientlibs/wci/components/block/fatfooter/clientlibs/resources/ub-logo-175-years.png" width="400"/> </a> <div class="footer-columns footer-columns-1"> <div class="footer-column footer-column-1"> <div class="col1 parsys"> <div class="title section"> <h2 id="title-1" onpaste="onPasteFilterPlainText(event)"> <a href="/cas/math.html"> Department of Mathematics </a> </h2> </div> <div class="text parbase section"> <p> 244 Mathematics Building <br/> Buffalo, NY 14260-2900 <br/> Phone: (716) 645-6284 <br/> Fax: (716) 645-5039 </p> </div> <div class="reference parbase section"> <div class="unstructuredpage page basicpage"> <div class="par parsys"> <div class="hr hrline" style="clear:left"> </div> <div class="captiontext text parbase section"> <p> <b> About Our Photos and Videos: </b> Some photos or videos that appear on this site may have been taken prior to the COVID-19 pandemic and therefore may not accurately reflect current operations or adherence to <a href="https://www.buffalo.edu/coronavirus/health-and-safety.html" target="_blank"> UB’s Health and Safety Guidelines </a> . <br/> </p> </div> </div> </div> <div contenttreeid="reference-1" contenttreestatus="Not published" style="display:none;"> </div> </div> </div> </div> </div> <div class="copyright"> <span class="copy"> </span> <script> jQuery(".copyright .copy").html("© " + (new Date()).getFullYear()); </script> <a href="//www.buffalo.edu/"> University at Buffalo </a> . All rights reserved. | <a href="//www.buffalo.edu/administrative-services/policy1/ub-policy-lib/privacy.html"> Privacy </a> | <a href="//www.buffalo.edu/access/about-us/contact-us.html"> Accessibility </a> </div> </div> </div> <div class="htmlsnippet section"> <div> <!-- Global site tag (gtag.js) - Google Analytics --> <script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-127757988-27"> </script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-127757988-27'); </script> </div> </div> </div> </div> <div contenttreeid="footer" contenttreestatus="Not published" style="display:none;"> </div> </div> </footer> </body> </html>
div = soup.find_all('div')[-12]
div
<div class="title section"><h2 id="title-1" onpaste="onPasteFilterPlainText(event)"> <a href="/cas/math.html">Department of Mathematics</a> </h2></div>
h2 = div.find_all('h2')[0]
h2
<h2 id="title-1" onpaste="onPasteFilterPlainText(event)"> <a href="/cas/math.html">Department of Mathematics</a> </h2>
link = h2.find_all('a')[0]
link
<a href="/cas/math.html">Department of Mathematics</a>
link.get_text()
'Department of Mathematics'
link['href']
'/cas/math.html'
h2.attrs
{'onpaste': 'onPasteFilterPlainText(event)', 'id': 'title-1'}
h2['id']
'title-1'
ptags = soup.find_all('p')
ptags
[<p><b>COVID-19 UPDATES • 3/4/2022</b></p>, <p>UB is committed to achieving inclusive excellence in a deliberate, intentional and coordinated fashion, embedding it in every aspect of our operations. We aspire to foster a healthy, productive, ethical, fair, and affirming campus community to allow all students, faculty and staff to thrive and realize their full potential. <br/></p>, <p><a href="#letter_a">A</a> | <a href="#letter_b">B</a> | <a href="#letter_c">C</a> | <a href="#letter_d">D</a> | E | <a href="#letter_f">F</a> | <a href="#letter_g">G</a> | <a href="#letter_h">H</a> | I | <a href="#letter_j">J</a> | <a href="#letter_h">K</a> | <a href="#letter_l">L</a> | <a href="#letter_m">M</a> | <a href="#letter_n">N</a> | <a href="#letter_o">O</a> | <a href="#letter_p">P</a> | Q | <a href="#letter_r">R</a> | <a href="#letter_s">S</a> | <a href="#letter_t">T</a> | <a href="#letter_u">U</a> | <a href="#letter_v">V</a> | <a href="#letter_w">W</a> | <a href="#letter_x">X</a> | <a href="#letter_y">Y</a> | <a href="#letter_z">Z</a></p>, <p><i>Offices as listed are in the Mathematics Building, North Campus.</i></p>, <p><b>Abeya Ranasinghe Mudiyanselage, Asela V.</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:aselavir@buffalo.edu">aselavir@buffalo.edu</a></p>, <p><b>Ahn, Min Woong</b><br/> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:minwoong@buffalo.edu">minwoong@buffalo.edu</a></p>, <p><b>Alegria, Linda</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:lindaale@buffalo.edu">lindaale@buffalo.edu</a><br/></p>, <p><b>Betz, Katherine</b><br/> Office: 132 Phone: 645-8820<br/> Email: <a href="mailto:kbetz2@buffalo.edu">kbetz2@buffalo.edu</a></p>, <p><b>Bhaumik, Jnanajyoti</b><br/> Office: 129 Mathematics Building<br/> Phone: 645-8817<br/> Email: <a href="mailto:jnanajyo@buffalo.edu">jnanajyo@buffalo.edu</a></p>, <p> </p>, <p><b>Cain Charles</b><br/> Email: <a href="mailto:ccain2@buffalo.edu">ccain2@buffalo.edu</a></p>, <p><b>Casper, Michael<br/> </b> Office: 222 Phone: 645-8779<br/> Email: <a href="mailto:mjcasper@buffalo.edu">mjcasper@buffalo.edu</a></p>, <p><b>Chang, Hong<br/> </b> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:hchang24@buffalo.edu">hchang24@buffalo.edu</a></p>, <p><b>Chen, Yen-Lin<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:yenlinch@buffalo.edu">yenlinch@buffalo.edu</a><br/></p>, <p><b>Cheuk, Ka Yue<br/> </b> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:kayueche@buffalo.edu">kayueche@buffalo.edu</a></p>, <p><b>Cosgrove, Gage (Makenzie)<br/> </b> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:gagecosg@buffalo.edu">gagecosg@buffalo.edu</a></p>, <p> </p>, <p><b>Engelhardt, Carolyn<br/> </b> Email: <a href="mailto:cengelha@buffalo.edu">cengelha@buffalo.edu</a><br/></p>, <p><b>Fonseca dos Reis, Elohim<br/> </b> Office: 313 Phone: 645-8804<br/> Email: <a href="mailto:elohimfo@buffalo.edu">elohimfo@buffalo.edu</a></p>, <p><b>Gkogkou, Aikaterini</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:agkogkou@buffalo.edu">agkogkou@buffalo.edu</a></p>, <p><b>Haverlick, Justin<br/> </b> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:jmhaverl@buffalo.edu">jmhaverl@buffalo.edu</a></p>, <p><b>Herron, Amy</b><br/> Office: 135 <br/> Email: <a href="mailto:ajherron@buffalo.edu">ajherron@buffalo.edu</a></p>, <p><b>Hovland, Seth</b><br/> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:sethhovl@buffalo.edu">sethhovl@buffalo.edu</a></p>, <p><b>Hung, Tsz Fun</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:tszfunhu@buffalo.edu">tszfunhu@buffalo.edu</a></p>, <p><b>Hutchings, Raymond</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:rhhutchi@buffalo.edu">rhhutchi@buffalo.edu</a></p>, <p><b>Huynh, Bao<br/> </b> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:baohuynh@buffalo.edu">baohuynh@buffalo.edu</a></p>, <p><b>Jeong, Myeongjin<br/> </b> Office: 244<br/> Email:<a href="mailto:mjeong31@buffalo.edu">mjeong31@buffalo.edu</a></p>, <p><b>Jones, Raymond</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:rpjones2@buffalo.edu">rpjones2@buffalo.edu</a></p>, <p><b>Kilic, Bengier Ulgen<br/> </b> Office: 106 Phone: 645-8763<br/> Email: <a href="mailto:bengieru@buffalo.edu">bengieru@buffalo.edu</a></p>, <p><b>Kim, Jiseong<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:jiseongk@buffalo.edu">jiseongk@buffalo.edu</a></p>, <p><b>Kireyev, Dmitri</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:dmitriki@buffalo.edu">dmitriki@buffalo.edu</a><br/></p>, <p><b>Le, Minh Quang</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:minhquan@buffalo.edu">minhquan@buffalo.edu</a></p>, <p><b>Leonard, Dakota</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:dl42@buffalo.edu">dl42@buffalo.edu</a></p>, <p><b>Liao, Chang-Chih</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:cliao9@buffalo.edu">cliao9@buffalo.edu</a></p>, <p><b>Liao, Yanzhan</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:yanzhanl@buffalo.edu">yanzhanl@buffalo.edu</a></p>, <p><b>Liu, Ruodan</b><br/> Office: 135 Phone: 645-8832<br/> Email: <a href="mailto:rliu8@buffalo.edu">rliu8@buffalo.edu</a></p>, <p><b>Liu,Tianmou<br/> </b> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:tianmoul@buffalo.edu">tianmoul@buffalo.edu</a></p>, <p><b>Liu, Yuan</b><br/> Office: 135 Phone: 645-8832<br/> Email: <a href="mailto:yuanliu@buffalo.edu">yuanliu@buffalo.edu</a></p>, <p> </p>, <p><b>Ma, Ning<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:nma22@buffalo.edu">nma22@buffalo.edu</a><br/></p>, <p><b>Ma, Renda<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:rendama@buffalo.edu">rendama@buffalo.edu</a></p>, <p><b>Ma, Yuqing</b><br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:yuqingma@buffalo.edu">yuqingma@buffalo.edu</a></p>, <p><b>Meng, Lingqi<br/> </b> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:lingqime@buffalo.edu">lingqime@buffalo.edu</a></p>, <p><b>Meyer, Drew</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:drewmeye@buffalo.edu">drewmeye@buffalo.edu</a></p>, <p><b>Montoro, Michael<br/> </b> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:mnmontor@buffalo.edu">mnmontor@buffalo.edu</a></p>, <p><b>Moore, Robert</b><br/> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:rcmoore@buffalo.edu">rcmoore@buffalo.edu</a><br/></p>, <p><b>Nguyen, Khanh Truong</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:kn55@buffalo.edu">kn55@buffalo.edu</a></p>, <p><b>Peng, Jun</b><br/> Office: 139 Phone: 645-8824<b><br/> </b> Email: <a href="mailto:jpeng3@buffalo.edu">jpeng3@buffalo.edu</a></p>, <p><b>Poste, Alex</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:apposte@buffalo.edu">apposte@buffalo.edu</a></p>, <p> </p>, <p><b>Rantanen, Matthew<br/> </b> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:mattrant@buffalo.edu">mattrant@buffalo.edu</a></p>, <p><b>Rele, Adhish</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:adhishpr@buffalo.edu">adhishpr@buffalo.edu</a></p>, <p><b>Russell, Madison</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:merussel@buffalo.edu">merussel@buffalo.edu</a></p>, <p><b>Rozwood, Bud<br/> </b> Office: 125 Phone: 645-8815<b><br/> </b> Email: <a href="mailto:budrozwo@buffalo.edu">budrozwo@buffalo.edu</a></p>, <p><b>Sarkar, Sayantan<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:sayantan@buffalo.edu">sayantan@buffalo.edu</a></p>, <p><b>Sharma, Abhishek<br/> </b> Office: 126 Phone: 645-8816<br/> Email: aks28<a href="mailto:sayantan@buffalo.edu">@buffalo.edu</a></p>, <p><b>Sicuso, Luca</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:lucasicu@buffalo.edu">lucasicu@buffalo.edu</a></p>, <p><b>Solanki, Deepisha</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:deepisha@buffalo.edu">deepisha@buffalo.edu</a></p>, <p><b>Som, Bratati<br/> </b> Office: 132 Phone: 645-8820<br/> Email: <a href="mailto:bratatis@buffalo.edu">bratatis@buffalo.edu</a></p>, <p><b>Song, Zhao<br/> </b> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:zhaosong@buffalo.edu">zhaosong@buffalo.edu</a></p>, <p><b>Sullivan, Mark</b><br/> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:marksull@buffalo.edu">marksull@buffalo.edu</a></p>, <p><b>Sun, Yuxun</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:yuxunsun@buffalo.edu">yuxunsun@buffalo.edu</a></p>, <p><b>Thongprayoon, Chanon</b><br/> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:chanonth@buffalo.edu">chanonth@buffalo.edu</a><br/> <br/> <br/></p>, <p><b>Vadnere, Arya Abhijeet</b><br/> Office: 132 Mathematics Building<br/> Phone: 645-8820<br/> Email: <a href="mailto:aryaabhi@buffalo.edu">aryaabhi@buffalo.edu</a></p>, <p><b>Vinal, Gregory<br/> </b> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:chanonth@buffalo.edu">gregoryv@buffalo.edu</a></p>, <p> </p>, <p><b>Wang, Daxun<br/> </b>Office: 141 Phone: 645-8825<br/> Email: <a href="mailto:daxunwan@buffalo.edu">daxunwan@buffalo.edu</a></p>, <p><b>Wang, Shiruo<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:bwang32@buffalo.edu">shiruowa@buffalo.edu</a></p>, <p><b>Yuan, Cheng</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:chengyua@buffalo.edu">chengyua@buffalo.edu</a></p>, <p><b>Zhang, Baoming</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:baomingz@buffalo.edu">baomingz@buffalo.edu</a></p>, <p><b>Zhao, Bojun</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:bojunzha@buffalo.edu">bojunzha@buffalo.edu</a></p>, <p><b>Ziegler, Cameron</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:cz22@buffalo.edu">cz22@buffalo.edu</a></p>, <p>244 Mathematics Building<br/> Buffalo, NY 14260-2900<br/> Phone: (716) 645-6284<br/> Fax: (716) 645-5039</p>, <p><b>About Our Photos and Videos:</b> Some photos or videos that appear on this site may have been taken prior to the COVID-19 pandemic and therefore may not accurately reflect current operations or adherence to <a href="https://www.buffalo.edu/coronavirus/health-and-safety.html" target="_blank">UB’s Health and Safety Guidelines</a>.<br/></p>]
ptags[0]
<p><b>COVID-19 UPDATES • 3/4/2022</b></p>
ptags[15]
<p><b>Cosgrove, Gage (Makenzie)<br/> </b> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:gagecosg@buffalo.edu">gagecosg@buffalo.edu</a></p>
ptags[15].get_text()
'Cosgrove, Gage (Makenzie) Office: 139 Phone: 645-8824 Email: gagecosg@buffalo.edu'
ptags = [p for p in ptags if "Email" in p.get_text()]
ptags
[<p><b>Abeya Ranasinghe Mudiyanselage, Asela V.</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:aselavir@buffalo.edu">aselavir@buffalo.edu</a></p>, <p><b>Ahn, Min Woong</b><br/> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:minwoong@buffalo.edu">minwoong@buffalo.edu</a></p>, <p><b>Alegria, Linda</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:lindaale@buffalo.edu">lindaale@buffalo.edu</a><br/></p>, <p><b>Betz, Katherine</b><br/> Office: 132 Phone: 645-8820<br/> Email: <a href="mailto:kbetz2@buffalo.edu">kbetz2@buffalo.edu</a></p>, <p><b>Bhaumik, Jnanajyoti</b><br/> Office: 129 Mathematics Building<br/> Phone: 645-8817<br/> Email: <a href="mailto:jnanajyo@buffalo.edu">jnanajyo@buffalo.edu</a></p>, <p><b>Cain Charles</b><br/> Email: <a href="mailto:ccain2@buffalo.edu">ccain2@buffalo.edu</a></p>, <p><b>Casper, Michael<br/> </b> Office: 222 Phone: 645-8779<br/> Email: <a href="mailto:mjcasper@buffalo.edu">mjcasper@buffalo.edu</a></p>, <p><b>Chang, Hong<br/> </b> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:hchang24@buffalo.edu">hchang24@buffalo.edu</a></p>, <p><b>Chen, Yen-Lin<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:yenlinch@buffalo.edu">yenlinch@buffalo.edu</a><br/></p>, <p><b>Cheuk, Ka Yue<br/> </b> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:kayueche@buffalo.edu">kayueche@buffalo.edu</a></p>, <p><b>Cosgrove, Gage (Makenzie)<br/> </b> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:gagecosg@buffalo.edu">gagecosg@buffalo.edu</a></p>, <p><b>Engelhardt, Carolyn<br/> </b> Email: <a href="mailto:cengelha@buffalo.edu">cengelha@buffalo.edu</a><br/></p>, <p><b>Fonseca dos Reis, Elohim<br/> </b> Office: 313 Phone: 645-8804<br/> Email: <a href="mailto:elohimfo@buffalo.edu">elohimfo@buffalo.edu</a></p>, <p><b>Gkogkou, Aikaterini</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:agkogkou@buffalo.edu">agkogkou@buffalo.edu</a></p>, <p><b>Haverlick, Justin<br/> </b> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:jmhaverl@buffalo.edu">jmhaverl@buffalo.edu</a></p>, <p><b>Herron, Amy</b><br/> Office: 135 <br/> Email: <a href="mailto:ajherron@buffalo.edu">ajherron@buffalo.edu</a></p>, <p><b>Hovland, Seth</b><br/> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:sethhovl@buffalo.edu">sethhovl@buffalo.edu</a></p>, <p><b>Hung, Tsz Fun</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:tszfunhu@buffalo.edu">tszfunhu@buffalo.edu</a></p>, <p><b>Hutchings, Raymond</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:rhhutchi@buffalo.edu">rhhutchi@buffalo.edu</a></p>, <p><b>Huynh, Bao<br/> </b> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:baohuynh@buffalo.edu">baohuynh@buffalo.edu</a></p>, <p><b>Jeong, Myeongjin<br/> </b> Office: 244<br/> Email:<a href="mailto:mjeong31@buffalo.edu">mjeong31@buffalo.edu</a></p>, <p><b>Jones, Raymond</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:rpjones2@buffalo.edu">rpjones2@buffalo.edu</a></p>, <p><b>Kilic, Bengier Ulgen<br/> </b> Office: 106 Phone: 645-8763<br/> Email: <a href="mailto:bengieru@buffalo.edu">bengieru@buffalo.edu</a></p>, <p><b>Kim, Jiseong<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:jiseongk@buffalo.edu">jiseongk@buffalo.edu</a></p>, <p><b>Kireyev, Dmitri</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:dmitriki@buffalo.edu">dmitriki@buffalo.edu</a><br/></p>, <p><b>Le, Minh Quang</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:minhquan@buffalo.edu">minhquan@buffalo.edu</a></p>, <p><b>Leonard, Dakota</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:dl42@buffalo.edu">dl42@buffalo.edu</a></p>, <p><b>Liao, Chang-Chih</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:cliao9@buffalo.edu">cliao9@buffalo.edu</a></p>, <p><b>Liao, Yanzhan</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:yanzhanl@buffalo.edu">yanzhanl@buffalo.edu</a></p>, <p><b>Liu, Ruodan</b><br/> Office: 135 Phone: 645-8832<br/> Email: <a href="mailto:rliu8@buffalo.edu">rliu8@buffalo.edu</a></p>, <p><b>Liu,Tianmou<br/> </b> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:tianmoul@buffalo.edu">tianmoul@buffalo.edu</a></p>, <p><b>Liu, Yuan</b><br/> Office: 135 Phone: 645-8832<br/> Email: <a href="mailto:yuanliu@buffalo.edu">yuanliu@buffalo.edu</a></p>, <p><b>Ma, Ning<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:nma22@buffalo.edu">nma22@buffalo.edu</a><br/></p>, <p><b>Ma, Renda<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:rendama@buffalo.edu">rendama@buffalo.edu</a></p>, <p><b>Ma, Yuqing</b><br/> Office: 138 Phone: 645-8823 <br/> Email: <a href="mailto:yuqingma@buffalo.edu">yuqingma@buffalo.edu</a></p>, <p><b>Meng, Lingqi<br/> </b> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:lingqime@buffalo.edu">lingqime@buffalo.edu</a></p>, <p><b>Meyer, Drew</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:drewmeye@buffalo.edu">drewmeye@buffalo.edu</a></p>, <p><b>Montoro, Michael<br/> </b> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:mnmontor@buffalo.edu">mnmontor@buffalo.edu</a></p>, <p><b>Moore, Robert</b><br/> Office: 139 Phone: 645-8824<br/> Email: <a href="mailto:rcmoore@buffalo.edu">rcmoore@buffalo.edu</a><br/></p>, <p><b>Nguyen, Khanh Truong</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:kn55@buffalo.edu">kn55@buffalo.edu</a></p>, <p><b>Peng, Jun</b><br/> Office: 139 Phone: 645-8824<b><br/> </b> Email: <a href="mailto:jpeng3@buffalo.edu">jpeng3@buffalo.edu</a></p>, <p><b>Poste, Alex</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:apposte@buffalo.edu">apposte@buffalo.edu</a></p>, <p><b>Rantanen, Matthew<br/> </b> Office: 130 Phone: 645-8818<br/> Email: <a href="mailto:mattrant@buffalo.edu">mattrant@buffalo.edu</a></p>, <p><b>Rele, Adhish</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:adhishpr@buffalo.edu">adhishpr@buffalo.edu</a></p>, <p><b>Russell, Madison</b><br/> Office: 129 Phone: 645-8817<br/> Email: <a href="mailto:merussel@buffalo.edu">merussel@buffalo.edu</a></p>, <p><b>Rozwood, Bud<br/> </b> Office: 125 Phone: 645-8815<b><br/> </b> Email: <a href="mailto:budrozwo@buffalo.edu">budrozwo@buffalo.edu</a></p>, <p><b>Sarkar, Sayantan<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:sayantan@buffalo.edu">sayantan@buffalo.edu</a></p>, <p><b>Sharma, Abhishek<br/> </b> Office: 126 Phone: 645-8816<br/> Email: aks28<a href="mailto:sayantan@buffalo.edu">@buffalo.edu</a></p>, <p><b>Sicuso, Luca</b><br/> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:lucasicu@buffalo.edu">lucasicu@buffalo.edu</a></p>, <p><b>Solanki, Deepisha</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:deepisha@buffalo.edu">deepisha@buffalo.edu</a></p>, <p><b>Som, Bratati<br/> </b> Office: 132 Phone: 645-8820<br/> Email: <a href="mailto:bratatis@buffalo.edu">bratatis@buffalo.edu</a></p>, <p><b>Song, Zhao<br/> </b> Office: 131 Phone: 645-8819<br/> Email: <a href="mailto:zhaosong@buffalo.edu">zhaosong@buffalo.edu</a></p>, <p><b>Sullivan, Mark</b><br/> Office: 136 Phone: 645-8821<br/> Email: <a href="mailto:marksull@buffalo.edu">marksull@buffalo.edu</a></p>, <p><b>Sun, Yuxun</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:yuxunsun@buffalo.edu">yuxunsun@buffalo.edu</a></p>, <p><b>Thongprayoon, Chanon</b><br/> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:chanonth@buffalo.edu">chanonth@buffalo.edu</a><br/> <br/> <br/></p>, <p><b>Vadnere, Arya Abhijeet</b><br/> Office: 132 Mathematics Building<br/> Phone: 645-8820<br/> Email: <a href="mailto:aryaabhi@buffalo.edu">aryaabhi@buffalo.edu</a></p>, <p><b>Vinal, Gregory<br/> </b> Office: 126 Phone: 645-8816<br/> Email: <a href="mailto:chanonth@buffalo.edu">gregoryv@buffalo.edu</a></p>, <p><b>Wang, Daxun<br/> </b>Office: 141 Phone: 645-8825<br/> Email: <a href="mailto:daxunwan@buffalo.edu">daxunwan@buffalo.edu</a></p>, <p><b>Wang, Shiruo<br/> </b> Office: 125 Phone: 645-8815<br/> Email: <a href="mailto:bwang32@buffalo.edu">shiruowa@buffalo.edu</a></p>, <p><b>Yuan, Cheng</b><br/> Office: 137 Phone: 645-8822<br/> Email: <a href="mailto:chengyua@buffalo.edu">chengyua@buffalo.edu</a></p>, <p><b>Zhang, Baoming</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:baomingz@buffalo.edu">baomingz@buffalo.edu</a></p>, <p><b>Zhao, Bojun</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:bojunzha@buffalo.edu">bojunzha@buffalo.edu</a></p>, <p><b>Ziegler, Cameron</b><br/> Office: 140 Phone: 645-8825<br/> Email: <a href="mailto:cz22@buffalo.edu">cz22@buffalo.edu</a></p>]
p = ptags[0]
p
<p><b>Abeya Ranasinghe Mudiyanselage, Asela V.</b><br/> Office: 138 Phone: 645-8823<br/> Email: <a href="mailto:aselavir@buffalo.edu">aselavir@buffalo.edu</a></p>
p.find('b').get_text()
'Abeya Ranasinghe Mudiyanselage, Asela V.'
p.find('a').get_text()
'aselavir@buffalo.edu'
p.find('a')
<a href="mailto:aselavir@buffalo.edu">aselavir@buffalo.edu</a>
p.find('a')['href'].split(':')[1]
'aselavir@buffalo.edu'
directory = []
for p in ptags:
listing = {}
listing['name'] = p.find('b').get_text()
listing['email'] = p.find('a').get_text()
directory.append(listing)
directory
[{'name': 'Abeya Ranasinghe Mudiyanselage, Asela V.', 'email': 'aselavir@buffalo.edu'}, {'name': 'Ahn, Min Woong', 'email': 'minwoong@buffalo.edu'}, {'name': 'Alegria, Linda', 'email': 'lindaale@buffalo.edu'}, {'name': 'Betz, Katherine', 'email': 'kbetz2@buffalo.edu'}, {'name': 'Bhaumik, Jnanajyoti', 'email': 'jnanajyo@buffalo.edu'}, {'name': 'Cain Charles', 'email': 'ccain2@buffalo.edu'}, {'name': 'Casper, Michael ', 'email': 'mjcasper@buffalo.edu'}, {'name': 'Chang, Hong ', 'email': 'hchang24@buffalo.edu'}, {'name': 'Chen, Yen-Lin ', 'email': 'yenlinch@buffalo.edu'}, {'name': 'Cheuk, Ka Yue ', 'email': 'kayueche@buffalo.edu'}, {'name': 'Cosgrove, Gage (Makenzie) ', 'email': 'gagecosg@buffalo.edu'}, {'name': 'Engelhardt, Carolyn ', 'email': 'cengelha@buffalo.edu'}, {'name': 'Fonseca dos Reis, Elohim ', 'email': 'elohimfo@buffalo.edu'}, {'name': 'Gkogkou, Aikaterini', 'email': 'agkogkou@buffalo.edu'}, {'name': 'Haverlick, Justin ', 'email': 'jmhaverl@buffalo.edu'}, {'name': 'Herron, Amy', 'email': 'ajherron@buffalo.edu'}, {'name': 'Hovland, Seth', 'email': 'sethhovl@buffalo.edu'}, {'name': 'Hung, Tsz Fun', 'email': 'tszfunhu@buffalo.edu'}, {'name': 'Hutchings, Raymond', 'email': 'rhhutchi@buffalo.edu'}, {'name': 'Huynh, Bao ', 'email': 'baohuynh@buffalo.edu'}, {'name': 'Jeong, Myeongjin ', 'email': 'mjeong31@buffalo.edu'}, {'name': 'Jones, Raymond', 'email': 'rpjones2@buffalo.edu'}, {'name': 'Kilic, Bengier Ulgen ', 'email': 'bengieru@buffalo.edu'}, {'name': 'Kim, Jiseong ', 'email': 'jiseongk@buffalo.edu'}, {'name': 'Kireyev, Dmitri', 'email': 'dmitriki@buffalo.edu'}, {'name': 'Le, Minh Quang', 'email': 'minhquan@buffalo.edu'}, {'name': 'Leonard, Dakota', 'email': 'dl42@buffalo.edu'}, {'name': 'Liao, Chang-Chih', 'email': 'cliao9@buffalo.edu'}, {'name': 'Liao, Yanzhan', 'email': 'yanzhanl@buffalo.edu'}, {'name': 'Liu, Ruodan', 'email': 'rliu8@buffalo.edu'}, {'name': 'Liu,Tianmou ', 'email': 'tianmoul@buffalo.edu'}, {'name': 'Liu, Yuan', 'email': 'yuanliu@buffalo.edu'}, {'name': 'Ma, Ning ', 'email': 'nma22@buffalo.edu'}, {'name': 'Ma, Renda ', 'email': 'rendama@buffalo.edu'}, {'name': 'Ma, Yuqing', 'email': 'yuqingma@buffalo.edu'}, {'name': 'Meng, Lingqi ', 'email': 'lingqime@buffalo.edu'}, {'name': 'Meyer, Drew', 'email': 'drewmeye@buffalo.edu'}, {'name': 'Montoro, Michael ', 'email': 'mnmontor@buffalo.edu'}, {'name': 'Moore, Robert', 'email': 'rcmoore@buffalo.edu'}, {'name': 'Nguyen, Khanh Truong', 'email': 'kn55@buffalo.edu'}, {'name': 'Peng, Jun', 'email': 'jpeng3@buffalo.edu'}, {'name': 'Poste, Alex', 'email': 'apposte@buffalo.edu'}, {'name': 'Rantanen, Matthew ', 'email': 'mattrant@buffalo.edu'}, {'name': 'Rele, Adhish', 'email': 'adhishpr@buffalo.edu'}, {'name': 'Russell, Madison', 'email': 'merussel@buffalo.edu'}, {'name': 'Rozwood, Bud ', 'email': 'budrozwo@buffalo.edu'}, {'name': 'Sarkar, Sayantan ', 'email': 'sayantan@buffalo.edu'}, {'name': 'Sharma, Abhishek ', 'email': '@buffalo.edu'}, {'name': 'Sicuso, Luca', 'email': 'lucasicu@buffalo.edu'}, {'name': 'Solanki, Deepisha', 'email': 'deepisha@buffalo.edu'}, {'name': 'Som, Bratati ', 'email': 'bratatis@buffalo.edu'}, {'name': 'Song, Zhao ', 'email': 'zhaosong@buffalo.edu'}, {'name': 'Sullivan, Mark', 'email': 'marksull@buffalo.edu'}, {'name': 'Sun, Yuxun', 'email': 'yuxunsun@buffalo.edu'}, {'name': 'Thongprayoon, Chanon', 'email': 'chanonth@buffalo.edu'}, {'name': 'Vadnere, Arya Abhijeet', 'email': 'aryaabhi@buffalo.edu'}, {'name': 'Vinal, Gregory ', 'email': 'gregoryv@buffalo.edu'}, {'name': 'Wang, Daxun ', 'email': 'daxunwan@buffalo.edu'}, {'name': 'Wang, Shiruo ', 'email': 'shiruowa@buffalo.edu'}, {'name': 'Yuan, Cheng', 'email': 'chengyua@buffalo.edu'}, {'name': 'Zhang, Baoming', 'email': 'baomingz@buffalo.edu'}, {'name': 'Zhao, Bojun', 'email': 'bojunzha@buffalo.edu'}, {'name': 'Ziegler, Cameron', 'email': 'cz22@buffalo.edu'}]
import pandas as pd
df = pd.DataFrame(directory)
df
name | ||
---|---|---|
0 | Abeya Ranasinghe Mudiyanselage, Asela V. | aselavir@buffalo.edu |
1 | Ahn, Min Woong | minwoong@buffalo.edu |
2 | Alegria, Linda | lindaale@buffalo.edu |
3 | Betz, Katherine | kbetz2@buffalo.edu |
4 | Bhaumik, Jnanajyoti | jnanajyo@buffalo.edu |
... | ... | ... |
58 | Wang, Shiruo | shiruowa@buffalo.edu |
59 | Yuan, Cheng | chengyua@buffalo.edu |
60 | Zhang, Baoming | baomingz@buffalo.edu |
61 | Zhao, Bojun | bojunzha@buffalo.edu |
62 | Ziegler, Cameron | cz22@buffalo.edu |
63 rows × 2 columns
faculty_url = "http://www.buffalo.edu/cas/math/people/faculty.html"
faculty = requests.get(faculty_url).text
faculty
'<!DOCTYPE HTML><html lang="en" class="ubcms-65"><!-- cmspub01 0316-124224 --><head><link rel="preconnect" href="https://www.googletagmanager.com/" crossorigin/><link rel="dns-prefetch" href="https://www.googletagmanager.com/"/><link rel="dns-prefetch" href="https://connect.facebook.net/"/><link rel="dns-prefetch" href="https://www.google-analytics.com/"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta http-equiv="content-type" content="text/html; charset=UTF-8"/><meta id="meta-viewport" name="viewport" content="width=device-width,initial-scale=1"/><script>if (screen.width > 720 && screen.width < 960) document.getElementById(\'meta-viewport\').setAttribute(\'content\',\'width=960\');</script><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);})(window,document,\'script\',\'dataLayer\',\'GTM-T5KRRKT\');</script><title>Faculty - Department of Mathematics - University at Buffalo</title><link rel="canonical" href="https://www.buffalo.edu/cas/math/people/faculty.html"/><meta name="date" content="2022-01-11"/><meta property="og:title" content="Faculty"/><meta property="og:image" content="https://www.buffalo.edu/etc/designs/ubcms/clientlibs-main/images/ub-social.png.img.512.auto.png/1615975612658.png"/><meta property="og:image:alt" content="University at Buffalo"/><meta name="twitter:card" content="summary_large_image"/><link rel="stylesheet" href="/v-5150cc622c68590719981526ed5c6b25/etc/designs/ubcms/clientlibs-privateauthor.min.5150cc622c68590719981526ed5c6b25.css" type="text/css"><link rel="stylesheet" href="/v-49ba143ee0d54e4b50b059d8fe0cb4d1/etc/designs/ubcms/clientlibs.min.49ba143ee0d54e4b50b059d8fe0cb4d1.css" type="text/css"><link type="text/css" rel="stylesheet" href="/v-9cc4b89851550cf5e105d25db85ba3e9/etc/designs/cas/math/css/main.css"/><script src="/v-a83c7a045b4a3c7a9600758298bc4ad8/etc/designs/ubcms/clientlibs-polyfills.min.a83c7a045b4a3c7a9600758298bc4ad8.js" nomodule></script><script src="/etc.clientlibs/clientlibs/granite/jquery.min.cee8557e8779d371fe722bbcdd3b3eb7.js"></script><script src="/v-90b621c54f984dacfd1d096327d757da/etc/designs/ubcms/clientlibs.min.90b621c54f984dacfd1d096327d757da.js"></script><style>body.page #page, body.page .page-inner {background-color:#FFFFFF}</style><script>(function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\');ga(\'create\', \'UA-67291618-1\', \'auto\');ga(\'send\', \'pageview\');</script><style>\n img.lazyload,img.lazyloading{position:relative;background:#EEE}\n img.lazyload:before,img.lazyloading:before{content:"";background:#EEE;position:absolute;top:0;left:0;bottom:0;right:0}\n </style></head><body class="contentpage page"><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T5KRRKT" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><nav aria-label="skip to content"><a href="#skip-to-content" id="skip-to-content-link">Skip to Content</a></nav><div></div><div id="page"><div class="page-inner"><div class="page-inner-1"><div class="page-inner-2"><div class="page-inner-2a"></div><div class="page-inner-3"><header><div class="innerheader inheritedreference reference parbase"><div class="headerconfigpage contentpage page basicpage"><div class="par parsys "><div class="alertbanner reference parbase section"><div contenttreeid="alertbanner" contenttreestatus="Not published" style="display:none;"></div><script>jQuery(\'.cap-message\').detach().insertBefore(\'#page\').wrap(\'<section aria-label="UB Alert">\');</script></div><div class="header section"><style>\n .innerheader { padding-top: 158px }\n .header { height: 158px }\n .header .main { height: 134px }\n </style><div><div class="top theme-blue" data-set="header-links"><ul class="school-links"><li><a href="http://arts-sciences.buffalo.edu/">College of Arts and Sciences</a></li></ul><ul class="pervasive-links"><li><a href="//www.buffalo.edu">UB Home</a></li><li><a href="//www.buffalo.edu/maps">Maps</a></li><li><a href="//www.buffalo.edu/directory/">UB Directory</a></li></ul></div><div class="main theme-blue brand-extension lines-1"><div class="lockup"><a href="//www.buffalo.edu"> <i class="icon icon-ub-logo"></i><span class="ada-hidden">University at Buffalo</span> <span class="logo"> <img class="black" src="/v-be9166b6b4a1ea7e5771e2eba1d410cf/etc.clientlibs/wci/components/block/header/clientlibs/resources/ub-logo-black.png" alt="" width="181" height="20"/> </span> </a><div class="mobile-links" data-set="header-links"></div><a class="title" href="/cas/math.html">Department of Mathematics</a></div><div class="social" data-set="headersocial"></div><div class="tasknav" data-set="tasknav"><div class="buttoncomponent sidebyside orange"><a href="http://www.buffalo.edu/ub_admissions/apply-now.html" target="_blank"> Apply to UB </a></div><div class="buttoncomponent sidebyside blue"><a href="http://www.buffalo.edu/cas/math/about-us/contact-us.html"> Contact Us </a></div><div class="buttoncomponent sidebyside green"><a href="https://ubfoundation.buffalo.edu/giving/?gift_allocation=01-3-0-01240" target="_blank"> Support UB Math </a></div></div></div></div></div><div class="reference parbase section"><div class="unstructuredpage page basicpage"><div class="par parsys "><div class="list parbase section"><div id="ubcms-gen-1925085" data-columnize-row="1"><ul class="list-style-detail" data-columnize="1"><li><div class="long-term-alert-banner"><div class="text parbase section"><p><b>COVID-19 UPDATES • 3/4/2022</b></p><ul><li><a href="/coronavirus/latest-update.html">UB lifts vaccination policy for campus events</a></li></ul></div></div></li></ul></div><script>\n UBCMS.list.listlimit(\'ubcms\\u002Dgen\\u002D1925085\', \'100\',\n \'100\');\n </script></div><script>UBCMS.longTermAlert.init()\n</script></div></div><div contenttreeid="reference" contenttreestatus="Not published" style="display:none;"></div></div><div class="mobilemenu section"><!--noindex--><nav aria-label="mobile navigation menu"><ul><li class="mobileheader-button-menu" style="display: none"><a href="#">Menu</a></li><li class="mobileheader-button-search" style="display: none"><a href="#">Search</a></li></ul></nav><!--endnoindex--><div id="mobile-search" class="menu"><div id="mobile-search-inner" class="menu-inner" data-set="mobile-search"></div></div><div id="mobile-menu" class="menu"><div class="menu-inner"><div id="mobile-menu-inner"><div class="loading"><!--noindex-->Loading menu...<!--endnoindex--></div></div><div class="tasknav" data-set="tasknav"></div><div class="headersocial" data-set="headersocial"></div></div></div><script>\n jQuery(\'.mobileheader-button-menu\').removeAttr(\'style\');\n jQuery(document).ready(function() {\n if ($(\'.topnav .search .search-content\').length > 0) {\n $(\'.mobileheader-button-search\').removeAttr(\'style\');\n }\n });\n UBCMS.rwd.mobileMenu.load(\'\\/content\\/cas\\/math\\/jcr:content.nav.html\', \'https:\\/\\/www.buffalo.edu\\/cas\\/math\\/people\\/faculty.html\');\n</script></div><div class="topnav section"><nav class="topnav-inner" aria-label="site navigation"><div class="main"><ul class="menu"><li class="first theme-secondary theme-standard-gray"><a id="ubcms-gen-1925095" aria-haspopup="true" href="/cas/math/about-us.html"><span class="container">About</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1925095"><ul class="submenu clearfix"><li class="first"><a aria-label="About:Why Choose Us?" href="/cas/math/about-us/why-choose.html">Why Choose Us?</a></li><li><a aria-label="About:Our Mission" href="/cas/math/about-us/our-mission.html">Our Mission</a></li><li><a aria-label="About:Our Alumni, Students, and Faculty" href="/cas/math/about-us/our-alumni.html">Our Alumni, Students, and Faculty</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Our Alumni, Students, and Faculty:Our Alumni" href="/cas/math/about-us/our-alumni/our-alumni.html">Our Alumni</a></li><li><a aria-label="Our Alumni, Students, and Faculty:Our Students" href="/cas/math/about-us/our-alumni/our-students.html">Our Students</a></li><li class="last"><a aria-label="Our Alumni, Students, and Faculty:Our Faculty" href="/cas/math/about-us/our-alumni/our-faculty.html">Our Faculty</a></li></ul></div></li><li><a aria-label="About:Memberships" href="/cas/math/about-us/memberships.html">Memberships</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Memberships:American Mathematical Society" href="/cas/math/about-us/memberships/AMS.html">American Mathematical Society</a></li><li><a aria-label="Memberships:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li><li class="last"><a aria-label="Memberships:Mathematical Sciences Research Institute" href="/cas/math/about-us/memberships/MSRI.html">Mathematical Sciences Research Institute</a></li></ul></div></li><li><a aria-label="About:Mathematicians of the African Diaspora" href="/cas/math/about-us/mathematicians-of-the-african-diaspora.html">Mathematicians of the African Diaspora</a></li><li><a aria-label="About:About the University" href="/cas/math/about-us/about-the-university.html">About the University</a></li><li><a aria-label="About:About Buffalo-Niagara" href="/cas/math/about-us/the-buffalo-niagara-region.html">About Buffalo-Niagara</a></li><li><a aria-label="About:Visiting UB" href="/cas/math/news-events/visiting.html">Visiting UB</a></li><li class="last"><a aria-label="About:Contact Us" href="/cas/math/about-us/contact-us.html">Contact Us</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray active-trail"><a id="ubcms-gen-1925114" aria-haspopup="true" href="/cas/math/people.html"><span class="container">People</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1925114"><ul class="submenu clearfix"><li class="first active-trail"><a class="active" aria-label="People:Faculty" href="/cas/math/people/faculty.html">Faculty</a></li><li><a aria-label="People:Staff" href="/cas/math/people/staff_directory.html">Staff</a></li><li><a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html">Emeriti Faculty</a></li><li><a aria-label="People:Instructors" href="/cas/math/people/instructors.html">Instructors</a></li><li><a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html">Visiting Scholars</a></li><li><a aria-label="People:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></li><li class="last"><a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html">Alumni</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li><a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li><li class="last"><a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to Present</a></li></ul></div></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-1925123" aria-haspopup="true" href="/cas/math/research.html"><span class="container">Research</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1925123"><ul class="submenu clearfix"><li class="first"><a aria-label="Research:Algebra" href="/cas/math/research/algebra.html">Algebra</a></li><li><a aria-label="Research:Analysis" href="/cas/math/research/analysis.html">Analysis</a></li><li><a aria-label="Research:Applied Mathematics" href="/cas/math/research/applied-mathematics.html">Applied Mathematics</a></li><li><a aria-label="Research:Geometry and Topology " href="/cas/math/research/geometry-topology.html">Geometry and Topology </a></li><li class="last"><a aria-label="Research:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html">Undergraduate Research</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-1925129" aria-haspopup="true" href="/cas/math/ug.html"><span class="container">Undergraduate</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1925129"><ul class="submenu clearfix"><li class="first"><a aria-label="Undergraduate:Undergraduate Programs" href="/cas/math/ug/undergraduate-programs.html">Undergraduate Programs</a></li><li><a aria-label="Undergraduate:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html">Undergraduate Research</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Undergraduate Research:Special Research Projects" href="/cas/math/ug/undergraduate-research/special-projects.html">Special Research Projects</a></li><li class="last"><a aria-label="Undergraduate Research:Summer Math Scholarship" href="/cas/math/ug/undergraduate-research/summer.html">Summer Math Scholarship</a></li></ul></div></li><li><a aria-label="Undergraduate:Honors, Awards, and Scholarships" href="/cas/math/ug/honors--awards--and-scholarships.html">Honors, Awards, and Scholarships</a></li><li><a aria-label="Undergraduate:Undergraduate Courses" href="/cas/math/ug/ug-courses.html">Undergraduate Courses</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Undergraduate Courses:Sample Syllabi" href="/cas/math/ug/ug-courses/syllabi.html">Sample Syllabi</a></li><li><a aria-label="Undergraduate Courses:MTH 121 and 122 Textbook" href="/cas/math/ug/ug-courses/mth121-122-textbook.html">MTH 121 and 122 Textbook</a></li><li class="last"><a aria-label="Undergraduate Courses:MTH 306 Textbook" href="/cas/math/ug/ug-courses/mth-306-textbook.html">MTH 306 Textbook</a></li></ul></div></li><li><a aria-label="Undergraduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home">Directed Reading Program</a></li><li><a aria-label="Undergraduate:Mathematics Resources" href="/cas/math/ug/resources.html">Mathematics Resources</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Mathematics Resources:Mathematics Placement Exam" href="/cas/math/ug/resources/mathplacement.html">Mathematics Placement Exam</a></li><li><a aria-label="Mathematics Resources:Mathematics Placement Exam Frequently Asked Questions" href="/cas/math/ug/resources/MPEFAQ.html">Mathematics Placement Exam Frequently Asked Questions</a></li><li class="last"><a aria-label="Mathematics Resources:Force Registration" href="/cas/math/ug/resources/force-registration.html">Force Registration</a></li></ul></div></li><li><a aria-label="Undergraduate:Mathematics Help Center" href="/cas/math/ug/help-center.html">Mathematics Help Center</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first last"><a aria-label="Mathematics Help Center:Online Help Sessions" href="/content/cas/math/ug/help-center/zoom-pw.html">Online Help Sessions</a></li></ul></div></li><li class="last"><a aria-label="Undergraduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-1925137" aria-haspopup="true" href="/cas/math/grad.html"><span class="container">Graduate</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1925137"><ul class="submenu clearfix"><li class="first"><a aria-label="Graduate:Master\'s Program" href="/cas/math/grad/master-program.html">Master\'s Program</a></li><li><a aria-label="Graduate:Doctoral Program (PhD)" href="/cas/math/grad/doctoral-program.html">Doctoral Program (PhD)</a></li><li><a aria-label="Graduate:Request Information" href="/cas/math/grad/request-information.html">Request Information</a></li><li><a aria-label="Graduate:Admissions" href="/cas/math/grad/grad-admissions.html">Admissions</a></li><li><a aria-label="Graduate:Courses" href="/cas/math/grad/grad-courses.html">Courses</a></li><li><a aria-label="Graduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home">Directed Reading Program</a></li><li><a aria-label="Graduate:Graduate Research" href="/cas/math/grad/grad-research.html">Graduate Research</a></li><li><a aria-label="Graduate:Fellowships, Scholarships, Awards" href="/cas/math/grad/fellowships-awards.html">Fellowships, Scholarships, Awards</a></li><li><a aria-label="Graduate:PhD Recipients, 2010 to present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to present</a></li><li><a aria-label="Graduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html">Association for Women in Mathematics</a></li><li><a aria-label="Graduate:Graduate Student Lecture Series" href="/cas/math/grad/gsls.html">Graduate Student Lecture Series</a></li><li class="last"><a aria-label="Graduate:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li><li class="theme-secondary theme-standard-gray"><a id="ubcms-gen-1925149" aria-haspopup="true" href="/cas/math/courses.html"><span class="container">Courses</span></a></li><li class="last theme-secondary theme-standard-gray"><a id="ubcms-gen-1925151" aria-haspopup="true" href="/cas/math/news-events/news.html"><span class="container">News & Events</span></a><div class="topnav-submenu-container" aria-labelledby="ubcms-gen-1925151"><ul class="submenu clearfix"><li class="first"><a aria-label="News & Events:News" href="/cas/math/news-events/news.html">News</a></li><li><a aria-label="News & Events:Events " href="/cas/math/news-events/calendar.html">Events </a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Events :Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li class="last"><a aria-label="Events :Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li></ul></div></li><li><a aria-label="News & Events:Myhill Lecture Series" href="/cas/math/news-events/myhill.html">Myhill Lecture Series</a><div class="topnav-submenu-children-container list"><ul class="submenu-children clearfix link-list"><li class="first"><a aria-label="Myhill Lecture Series:Laura DeMarco, 2019" href="/cas/math/news-events/myhill/laura-demarco.html">Laura DeMarco, 2019</a></li><li><a aria-label="Myhill Lecture Series:Mark Newman, 2018" href="/cas/math/news-events/myhill/mark-newman.html">Mark Newman, 2018</a></li><li><a aria-label="Myhill Lecture Series:Guoliang Yu, 2017" href="/cas/math/news-events/myhill/guoliangyu.html">Guoliang Yu, 2017</a></li><li><a aria-label="Myhill Lecture Series:Gopal Prasad, 2016" href="/cas/math/news-events/myhill/gopal-prasad.html">Gopal Prasad, 2016</a></li><li><a aria-label="Myhill Lecture Series:Ciprian Manolescu, 2015" href="/cas/math/news-events/myhill/ciprian-manolescu.html">Ciprian Manolescu, 2015</a></li><li><a aria-label="Myhill Lecture Series:Percy A. Deift, 2014" href="/cas/math/news-events/myhill/percy-deift.html">Percy A. Deift, 2014</a></li><li class="last"><a aria-label="Myhill Lecture Series:Peter Sarnak, 2013" href="/cas/math/news-events/myhill/peter-sarnak.html">Peter Sarnak, 2013</a></li></ul></div></li><li><a aria-label="News & Events:NERCCS 2020" href="/cas/math/news-events/nerccs-2020.html">NERCCS 2020</a></li><li><a aria-label="News & Events:News & Events Archive" href="/cas/math/news-events/archives.html">News & Events Archive</a></li><li class="last"><a aria-label="News & Events:Visiting UB" href="/cas/math/news-events/visiting.html">Visiting UB</a></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></div></li></ul></div><div class="right"><div class="search"><!--noindex--><div class="search-menu" tabindex="0"><div class="search-label">Search</div><!-- Uses appendAround.js script to transfer this search form to mobile nav menu via data-set attribute. --><div class="search-content" data-set="mobile-search"><form class="search-form" method="GET" action="/cas/math/searchresults.html" onsubmit="return this.q.value != \'\'"><div class="search-container" role="search"><input autocomplete="off" id="ubcms-gen-1925158" class="search-input" name="q" type="text" placeholder="Search" aria-label="Search"/> <button class="search-submit" type="submit" value="Search" aria-label="Search"></button></div></form></div></div><!--endnoindex--></div><div class="audiencenav list parbase"><div tabindex="0" class="audiencenav-wrapper"><div class="label">Info For</div><ul><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/information-for-students.html"> Current Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/ug/undergraduate-programs.html"> Future Undergraduate Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/grad.html"> Future Graduate Students </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/information-for-faculty-staff.html"> Faculty & Staff </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="/cas/math/people/alumni-friends.html"> Alumni & Friends </a></li><li><a onfocus="jQuery(this).parents(\'.audiencenav-wrapper\').addClass(\'hover\')" onblur="jQuery(this).parents(\'.audiencenav-wrapper\').removeClass(\'hover\')" href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> Diversity, Equity, and Inclusive Excellence Resources </a></li></ul></div></div></div></nav><script>$(".topnav").accessibleDropDown();</script></div></div></div><div contenttreeid="innerheader" contenttreestatus="Not published" style="display:none;"></div></div></header><div id="columns" class="two-column clearfix"><div class="columns-bg columns-bg-1"><div class="columns-bg columns-bg-2"><div class="columns-bg columns-bg-3"><div class="columns-bg columns-bg-4"><div id="left"><div class="leftnav"><nav class="inner" aria-label="section navigation"><div class="title"><a href="/cas/math/people.html"><span class="title">People</span></a></div><ul class="menu nav-level-1"><li class="first active-trail"><span><a class="active" aria-label="People:Faculty" href="/cas/math/people/faculty.html">Faculty</a></span><ul class="menu nav-level-2"><li class="first"><a aria-label="Faculty:Bernard Badzioch" href="/cas/math/people/faculty/badzioch.html">Bernard Badzioch</a></li><li><a aria-label="Faculty:Gino Biondini" href="/cas/math/people/faculty/biondini.html">Gino Biondini</a></li><li><a aria-label="Faculty:Robert Busch" href="/cas/math/people/faculty/busch.html">Robert Busch</a></li><li><a aria-label="Faculty:Michael Casper" href="/cas/math/people/faculty/casper.html">Michael Casper</a></li><li><a aria-label="Faculty:Simone Cassani" href="/cas/math/people/faculty/simone-cassani.html">Simone Cassani</a></li><li><a aria-label="Faculty:Alexandr Chernyavski" href="/cas/math/people/faculty/chernyavskiy.html">Alexandr Chernyavski</a></li><li><a aria-label="Faculty:Alexandru Chirvasitu" href="/cas/math/people/faculty/chirvasitu.html">Alexandru Chirvasitu</a></li><li><a aria-label="Faculty:Ching Chou" href="/cas/math/people/faculty/cchou.html">Ching Chou</a></li><li><a aria-label="Faculty:Lewis Coburn" href="/cas/math/people/faculty/coburn.html">Lewis Coburn</a></li><li><a aria-label="Faculty:Michael Cowen" href="/cas/math/people/faculty/cowen.html">Michael Cowen</a></li><li><a aria-label="Faculty:Thomas Cusick" href="/cas/math/people/faculty/cusick.html">Thomas Cusick</a></li><li><a aria-label="Faculty:Jonathan Dimock" href="/cas/math/people/faculty/dimock.html">Jonathan Dimock</a></li><li><a aria-label="Faculty:Sergey Dyachenko" href="/cas/math/people/faculty/dyachenko.html">Sergey Dyachenko</a></li><li><a aria-label="Faculty:James Faran" href="/cas/math/people/faculty/faran.html">James Faran</a></li><li><a aria-label="Faculty:Brian Hassard" href="/cas/math/people/faculty/hassard.html">Brian Hassard</a></li><li><a aria-label="Faculty:Richard A. Hollister" href="/cas/math/people/faculty/hollister.html">Richard A. Hollister</a></li><li><a aria-label="Faculty:Tara Hudson" href="/cas/math/people/faculty/hudson.html">Tara Hudson</a></li><li><a aria-label="Faculty:Joseph Hundley" href="/cas/math/people/faculty/hundley.html">Joseph Hundley</a></li><li><a aria-label="Faculty:Kimberly E. Javor" href="/cas/math/people/faculty/kim-javor.html">Kimberly E. Javor</a></li><li><a aria-label="Faculty:Prosenjit Kundu" href="/cas/math/people/faculty/kundu.html">Prosenjit Kundu</a></li><li><a aria-label="Faculty:Cagatay Kutluhan" href="/cas/math/people/faculty/kutluhan.html">Cagatay Kutluhan</a></li><li><a aria-label="Faculty:Hanfeng Li" href="/cas/math/people/faculty/hanfeng-li.html">Hanfeng Li</a></li><li><a aria-label="Faculty:Xiaoqing Li" href="/cas/math/people/faculty/xiaoqing-li.html">Xiaoqing Li</a></li><li><a aria-label="Faculty:Yiqiang Li" href="/cas/math/people/faculty/yiqiang-li.html">Yiqiang Li</a></li><li><a aria-label="Faculty:Jonathan Lottes" href="/cas/math/people/faculty/jonathan-lottes.html">Jonathan Lottes</a></li><li><a aria-label="Faculty:Johanna Mangahas" href="/cas/math/people/faculty/mangahas.html">Johanna Mangahas</a></li><li><a aria-label="Faculty:Mark Marino" href="/cas/math/people/faculty/marino.html">Mark Marino</a></li><li><a aria-label="Faculty:Naoki Masuda" href="/cas/math/people/faculty/naoki-masuda.html">Naoki Masuda</a></li><li><a aria-label="Faculty:William W. Menasco" href="/cas/math/people/faculty/menasco.html">William W. Menasco</a></li><li><a aria-label="Faculty:Sarah Muldoon" href="/cas/math/people/faculty/muldoon.html">Sarah Muldoon</a></li><li><a aria-label="Faculty:Corey Placito" href="/cas/math/people/faculty/placito.html">Corey Placito</a></li><li><a aria-label="Faculty:Barbara Prinari" href="/cas/math/people/faculty/prinari.html">Barbara Prinari</a></li><li><a aria-label="Faculty:Mohan Ramachandran" href="/cas/math/people/faculty/ramachandran.html">Mohan Ramachandran</a></li><li><a aria-label="Faculty:John Ringland" href="/cas/math/people/faculty/ringland.html">John Ringland</a></li><li><a aria-label="Faculty:Michael A. Rosas" href="/cas/math/people/faculty/michael-rosas.html">Michael A. Rosas</a></li><li><a aria-label="Faculty:Gershon Sageev" href="/cas/math/people/faculty/sageev.html">Gershon Sageev</a></li><li><a aria-label="Faculty:Angela Samul" href="/cas/math/people/faculty/samul.html">Angela Samul</a></li><li><a aria-label="Faculty:Adam Sikora" href="/cas/math/people/faculty/sikora.html">Adam Sikora</a></li><li><a aria-label="Faculty:Brian Spencer" href="/cas/math/people/faculty/spencer.html">Brian Spencer</a></li><li><a aria-label="Faculty:Kathlene Stephen" href="/cas/math/people/faculty/kathlene-stephen.html">Kathlene Stephen</a></li><li><a aria-label="Faculty:Dane Taylor" href="/cas/math/people/faculty/taylor.html">Dane Taylor</a></li><li><a aria-label="Faculty:Jingbo Xia" href="/cas/math/people/faculty/xia.html">Jingbo Xia</a></li><li><a aria-label="Faculty:Xingru Zhang" href="/cas/math/people/faculty/zhang.html">Xingru Zhang</a></li><li class="last"><a aria-label="Faculty:Hui June Zhu" href="/cas/math/people/faculty/hj-zhu.html">Hui June Zhu</a></li></ul></li><li><a aria-label="People:Staff" href="/cas/math/people/staff_directory.html">Staff</a></li><li><a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html">Emeriti Faculty</a></li><li><a aria-label="People:Instructors" href="/cas/math/people/instructors.html">Instructors</a></li><li><a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html">Visiting Scholars</a></li><li><a aria-label="People:Graduate Student Directory" href="/cas/math/people/grad-directory.html">Graduate Student Directory</a></li><li class="last expand-submenu"><a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html">Alumni</a><ul class="menu nav-level-2"><li class="first expand-submenu"><a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html">Class of 2021</a></li><li class="expand-submenu"><a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html">Class of 2020</a></li><li class="last expand-submenu"><a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html">PhD Recipients, 2010 to Present</a></li></ul></li></ul><div class="relatedLinks relatedlinksreference reference parbase"></div></nav></div><div class="mobile-left-col hide-in-narrow" data-set="mobile-center-bottom-or-right-top"><div class="leftcol parsys iparsys" role="complementary"><div class="iparys_inherited"><div class="leftcol iparsys parsys"><div class="flexmodule imagebase section"><div id="ubcms-gen-1925183" class="flexmodule-inner "><div class="title"><h2>Diversity, Equity, and Inclusive Excellence Resources</h2></div><div class="teaser teaser-block flexmodule-style flexmodule-style-largeimg"><div class="teaser-inner"><div class="teaser-images"><div class="teaser-image"><a href="http://www.buffalo.edu/inclusion/resources/IXResources.html" target="_blank"><noscript><picture contenttreeid=\'flexmodule\' contenttreestatus=\'Not published\'><source type="image/png" media="(max-width: 568px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x"><source type="image/png" media="(max-width: 720px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png"><source type="image/png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"><img height="131" alt="Diversity, Equity, and Inclusive Excellence Resources. " width="209" class="img-209 img-209x131 cq-dd-image" src="/content/cas/math/people/_jcr_content/leftcol/flexmodule.img.209.131.png/1607108331977.png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"></picture></noscript><picture class="no-display" contenttreeid=\'flexmodule\' contenttreestatus=\'Not published\'><source type="image/png" media="(max-width: 568px)" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x"><source type="image/png" media="(max-width: 720px)" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png"><source type="image/png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"><img height="131" alt="Diversity, Equity, and Inclusive Excellence Resources. " width="209" class="img-209 img-209x131 cq-dd-image lazyload" data-src="/content/cas/math/people/jcr%3acontent/leftcol/flexmodule.img.209.131.png/1607108331977.png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></a></div></div><div class="teaser-content"><div class="teaser-body"><p>UB is committed to achieving inclusive excellence in a deliberate, intentional and coordinated fashion, embedding it in every aspect of our operations. We aspire to foster a healthy, productive, ethical, fair, and affirming campus community to allow all students, faculty and staff to thrive and realize their full potential. <br/></p></div><div class="teaser-links"><div class="list"><div id="ubcms-gen-1925184" data-columnize-row="1"><ul class="link-list" data-columnize="1"><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/promoting-equal-employment-opportunity-and-diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Promoting Equal Employment Opportunity and Diversity</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Inclusive Excellence Resources</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/toolkits_trainings.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">Toolkits</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/studentlife/who-we-are/departments/diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">UB Intercultural and Diversity Center</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/diversity-innovation.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">UB Center for Diversity Innovation</span> </span> </a> </span></li><li><span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/external-resources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"></span> <!--endnoindex--> <span class="teaser-title">External Resources</span> </span> </a> </span></li></ul></div><div class="clearfix"></div><script>\n UBCMS.list.listlimit(\'ubcms\\u002Dgen\\u002D1925184\', \'100\',\n \'100\');\n </script></div></div></div></div><div class="teaser-clear"></div></div></div><div class="flexmodule-clear"></div></div></div></div></div></div></div><script>\n (function() {\n var $firstLeftIparsysInherited = $(\'#left .iparys_inherited\').eq(0);\n var $firstLeftIparsysSection = $(\'#left > .iparsys:first-child > .section:first-child\');\n var $mcbort = $(\'.mobile-center-bottom-or-right-top\');\n\n if ($firstLeftIparsysInherited.length && $firstLeftIparsysInherited.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $firstLeftIparsysInherited.addClass(\'empty\');\n \n if ($firstLeftIparsysSection.length && $firstLeftIparsysSection.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $firstLeftIparsysSection.addClass(\'empty\');\n \n if ($mcbort.length && $mcbort.html().replace(/\\s+|<\\/?div\\b[^>]*>/gi, \'\') === \'\')\n $mcbort.addClass(\'empty\');\n\n $(\'[role=complementary]\').each(function() {\n var $this = $(this);\n if ($this.children().filter(\':not(.empty)\').filter(\':not(:empty)\').length === 0)\n $this.removeAttr(\'role\');\n });\n\n if ($(\'.leftcol[role=complementary]\').length > 0 && $(\'#right[role=complementary]\').length > 0) {\n $(\'.leftcol[role=complementary]\').attr(\'aria-label\', \'left column\');\n $(\'#right[role=complementary]\').attr(\'aria-label\', \'right column\');\n }\n })();\n </script><div id="skip-to-content"></div><div id="center" role="main"><div class="mobile-content-top" data-set="content-top"></div><div class="par parsys"><div class="title section"><h1 onpaste="onPasteFilterPlainText(event)" id="title"> Faculty </h1></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="title_2087746532"> UB Mathematics Administration </h2></div><div class="list parbase section"><div id="ubcms-gen-1925191" data-columnize-row="1"><ul class="list-style-teaser" data-columnize="1"><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Gino Biondini. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/biondini/_jcr_content/profileinfo.img.60.60.z.jpg/1600442809023.jpg" srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Gino Biondini. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/biondini/jcr%3acontent/profileinfo.img.60.60.z.jpg/1600442809023.jpg" data-srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html"> <b>Gino Biondini<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Theoretical Physics, University of Perugia, Italy</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>226 & 324 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8810</p><p>Fax: (716) 645 5039</p><p><a class="longtext" href="mailto:biondini@buffalo.edu">biondini@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor & Department Chair</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8810">Call<span class="ada-hidden"> Gino Biondini</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:biondini@buffalo.edu">Email<span class="ada-hidden"> Gino Biondini</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html">Profile<span class="ada-hidden"> for Gino Biondini</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>226 & 324 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8810</p><p>Fax: (716) 645 5039</p><p><a class="longtext" href="mailto:biondini@buffalo.edu">biondini@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="John Ringland. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/ringland/_jcr_content/profileinfo.img.60.60.z.jpg/1635263747922.jpg" srcset="/content/shared/cas/math/faculty/ringland/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263747922.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="John Ringland. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/ringland/jcr%3acontent/profileinfo.img.60.60.z.jpg/1635263747922.jpg" data-srcset="/content/shared/cas/math/faculty/ringland/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263747922.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ringland.html"> <b>John Ringland<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Texas, Austin</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>206 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8773</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:ringland@buffalo.edu">ringland@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Chair, Associate Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8773">Call<span class="ada-hidden"> John Ringland</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:ringland@buffalo.edu">Email<span class="ada-hidden"> John Ringland</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ringland.html">Profile<span class="ada-hidden"> for John Ringland</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>206 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8773</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:ringland@buffalo.edu">ringland@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Joseph Hundley. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/hundley/_jcr_content/profileinfo.img.60.60.z.jpg/1598020704382.jpg" srcset="/content/shared/cas/math/faculty/hundley/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020704382.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Joseph Hundley. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hundley/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598020704382.jpg" data-srcset="/content/shared/cas/math/faculty/hundley/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020704382.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hundley.html"> <b>Joseph Hundley<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Columbia University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>203 & 232 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8771 & (716) 645-8784</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:jahundle@buffalo.edu">jahundle@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Professor, Director of Undergraduate Studies</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8771%20&%20(716)%20645-8784">Call<span class="ada-hidden"> Joseph Hundley</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:jahundle@buffalo.edu">Email<span class="ada-hidden"> Joseph Hundley</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hundley.html">Profile<span class="ada-hidden"> for Joseph Hundley</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>203 & 232 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8771 & (716) 645-8784</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:jahundle@buffalo.edu">jahundle@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Yiqiang Li. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/yiqiang-li/_jcr_content/profileinfo.img.60.60.z.jpg/1630610685359.jpg" srcset="/content/shared/cas/math/faculty/yiqiang-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1630610685359.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Yiqiang Li. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/yiqiang-li/jcr%3acontent/profileinfo.img.60.60.z.jpg/1630610685359.jpg" data-srcset="/content/shared/cas/math/faculty/yiqiang-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1630610685359.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/yiqiang-li.html"> <b>Yiqiang Li<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Kansas State University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>212 & 230 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8830 (Jenny Russell, 716-645-8782)</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:gsdmath@buffalo.edu">gsdmath@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-title">Director of Graduate Studies</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8830%20%20(Jenny%20Russell,%20716-645-8782)">Call<span class="ada-hidden"> Yiqiang Li</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:gsdmath@buffalo.edu">Email<span class="ada-hidden"> Yiqiang Li</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/yiqiang-li.html">Profile<span class="ada-hidden"> for Yiqiang Li</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>212 & 230 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8830 (Jenny Russell, 716-645-8782)</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:gsdmath@buffalo.edu">gsdmath@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li></ul><div class="clear"></div></div><div class="clearfix"></div><script>\n UBCMS.list.listlimit(\'ubcms\\u002Dgen\\u002D1925191\', \'100\',\n \'100\');\n </script></div><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="title_901139851"> UB Mathematics Faculty (alphabetical listing) </h2></div><div class="list parbase section"><div id="ubcms-gen-1925196" data-columnize-row="1"><ul class="list-style-teaser" data-columnize="1"><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Bernard Badzioch. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/badzioch/_jcr_content/profileinfo.img.60.60.z.jpg/1561407701969.jpg" srcset="/content/shared/cas/math/faculty/badzioch/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407701969.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Bernard Badzioch. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/badzioch/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407701969.jpg" data-srcset="/content/shared/cas/math/faculty/badzioch/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407701969.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/badzioch.html"> <b>Bernard Badzioch<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Notre Dame</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>108 & 232 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8798</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:badzioch@buffalo.edu">badzioch@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Homotopy Theory</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8798">Call<span class="ada-hidden"> Bernard Badzioch</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:badzioch@buffalo.edu">Email<span class="ada-hidden"> Bernard Badzioch</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/badzioch.html">Profile<span class="ada-hidden"> for Bernard Badzioch</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>108 & 232 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8798</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:badzioch@buffalo.edu">badzioch@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Gino Biondini. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/biondini/_jcr_content/profileinfo.img.60.60.z.jpg/1600442809023.jpg" srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Gino Biondini. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/biondini/jcr%3acontent/profileinfo.img.60.60.z.jpg/1600442809023.jpg" data-srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html"> <b>Gino Biondini<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Theoretical Physics, University of Perugia, Italy</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>226 & 324 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8810</p><p>Fax: (716) 645 5039</p><p><a class="longtext" href="mailto:biondini@buffalo.edu">biondini@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor & Department Chair</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Applied mathematics, nonlinear waves, solitons, integrable systems, inverse problems, applied probability, stochastic processes, optics.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8810">Call<span class="ada-hidden"> Gino Biondini</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:biondini@buffalo.edu">Email<span class="ada-hidden"> Gino Biondini</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html">Profile<span class="ada-hidden"> for Gino Biondini</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>226 & 324 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8810</p><p>Fax: (716) 645 5039</p><p><a class="longtext" href="mailto:biondini@buffalo.edu">biondini@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Robert Busch. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/busch/_jcr_content/profileinfo.img.60.60.z.jpg/1591280352890.jpg" srcset="/content/shared/cas/math/faculty/busch/jcr:content/profileinfo.img.120.120.z.q65.jpg/1591280352890.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Robert Busch. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/busch/jcr%3acontent/profileinfo.img.60.60.z.jpg/1591280352890.jpg" data-srcset="/content/shared/cas/math/faculty/busch/jcr:content/profileinfo.img.120.120.z.q65.jpg/1591280352890.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/busch.html"> <b>Robert Busch<span>,</span></b><small> MA</small> </a><div class="profileinfo-teaser-degree">MA, University at Buffalo</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>102 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8760</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:rlbusch@buffalo.edu">rlbusch@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Clinical Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8760">Call<span class="ada-hidden"> Robert Busch</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:rlbusch@buffalo.edu">Email<span class="ada-hidden"> Robert Busch</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/busch.html">Profile<span class="ada-hidden"> for Robert Busch</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>102 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8760</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:rlbusch@buffalo.edu">rlbusch@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/casper/_jcr_content/profileinfo.img.60.60.z.jpg/1561407766482.jpg" srcset="/content/shared/cas/math/faculty/casper/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407766482.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/casper/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407766482.jpg" data-srcset="/content/shared/cas/math/faculty/casper/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407766482.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/casper.html"> <b>Michael Casper<span>,</span></b><small> MA</small> </a><div class="profileinfo-teaser-degree">MA, University at Buffalo</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>222 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8779</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:mjcasper@buffalo.edu">mjcasper@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Online Coordinator, Clinical Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8779">Call<span class="ada-hidden"> Michael Casper</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:mjcasper@buffalo.edu">Email<span class="ada-hidden"> Michael Casper</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/casper.html">Profile<span class="ada-hidden"> for Michael Casper</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>222 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8779</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:mjcasper@buffalo.edu">mjcasper@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Simone Cassani. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/cassani/_jcr_content/profileinfo.img.60.60.z.jpg/1598020383575.jpg" srcset="/content/shared/cas/math/faculty/cassani/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020383575.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Simone Cassani. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/cassani/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598020383575.jpg" data-srcset="/content/shared/cas/math/faculty/cassani/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020383575.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cassani.html"> <b>Simone Cassani<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Purdue University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>321 Mathematics Building</p><p>University at Buffalo, North Campus</p><p>Phone: (716) 645-8807</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:scassani@buffalo.edu">scassani@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Visiting Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Applied Mathematics</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8807">Call<span class="ada-hidden"> Simone Cassani</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:scassani@buffalo.edu">Email<span class="ada-hidden"> Simone Cassani</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cassani.html">Profile<span class="ada-hidden"> for Simone Cassani</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>321 Mathematics Building</p><p>University at Buffalo, North Campus</p><p>Phone: (716) 645-8807</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:scassani@buffalo.edu">scassani@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Alexandr Chernyavskiy. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/chernyavskiy/_jcr_content/profileinfo.img.60.60.z.jpg/1636991957078.jpg" srcset="/content/shared/cas/math/faculty/chernyavskiy/jcr:content/profileinfo.img.120.120.z.q65.jpg/1636991957078.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Alexandr Chernyavskiy. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/chernyavskiy/jcr%3acontent/profileinfo.img.60.60.z.jpg/1636991957078.jpg" data-srcset="/content/shared/cas/math/faculty/chernyavskiy/jcr:content/profileinfo.img.120.120.z.q65.jpg/1636991957078.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/chernyavskiy.html"> <b>Alexandr Chernyavskiy<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Mathematics, McMaster University, Canada</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>328 Mathematics Building</p><p>University at Buffalo, North Campus</p><p>Phone: (716) 645-8814</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:chernyav@buffalo.edu">chernyav@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Visiting Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Applied Mathematics, Mathematical Physics, Nonlinear Waves, Parity-Time Symmetry, Scientific Computing, Sum-of-squares Optimization</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8814">Call<span class="ada-hidden"> Alexandr Chernyavskiy</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:chernyav@buffalo.edu">Email<span class="ada-hidden"> Alexandr Chernyavskiy</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/chernyavskiy.html">Profile<span class="ada-hidden"> for Alexandr Chernyavskiy</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>328 Mathematics Building</p><p>University at Buffalo, North Campus</p><p>Phone: (716) 645-8814</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:chernyav@buffalo.edu">chernyav@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Alexandru Chirvasitu. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/chirvasitu/_jcr_content/profileinfo.img.60.60.z.jpg/1561407786118.jpg" srcset="/content/shared/cas/math/faculty/chirvasitu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407786118.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Alexandru Chirvasitu. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/chirvasitu/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407786118.jpg" data-srcset="/content/shared/cas/math/faculty/chirvasitu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407786118.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/chirvasitu.html"> <b>Alexandru Chirvasitu<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of California at Berkeley (2014)</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>216 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8831</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:achirvas@buffalo.edu">achirvas@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Representation theory with a quantum group flavour</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8831">Call<span class="ada-hidden"> Alexandru Chirvasitu</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:achirvas@buffalo.edu">Email<span class="ada-hidden"> Alexandru Chirvasitu</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/chirvasitu.html">Profile<span class="ada-hidden"> for Alexandru Chirvasitu</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>216 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8831</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:achirvas@buffalo.edu">achirvas@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Ching Chou. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/ching-chou/_jcr_content/profileinfo.img.60.60.z.jpg/1561407803549.jpg" srcset="/content/shared/cas/math/faculty/ching-chou/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407803549.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Ching Chou. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/ching-chou/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407803549.jpg" data-srcset="/content/shared/cas/math/faculty/ching-chou/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407803549.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ching-chou.html"> <b>Ching Chou<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Rochester</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>320 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8806</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:chouc@buffalo.edu">chouc@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research:</span> Functional analysis, invariant means</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8806">Call<span class="ada-hidden"> Ching Chou</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:chouc@buffalo.edu">Email<span class="ada-hidden"> Ching Chou</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ching-chou.html">Profile<span class="ada-hidden"> for Ching Chou</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>320 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8806</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:chouc@buffalo.edu">chouc@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Lewis A. Coburn. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/coburn/_jcr_content/profileinfo.img.60.60.z.jpg/1561407825832.jpg" srcset="/content/shared/cas/math/faculty/coburn/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407825832.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Lewis A. Coburn. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/coburn/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407825832.jpg" data-srcset="/content/shared/cas/math/faculty/coburn/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407825832.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/coburn.html"> <b>Lewis A. Coburn<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Michigan</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>327 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8813</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:lcoburn@buffalo.edu">lcoburn@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Analysis, functional analysis</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8813">Call<span class="ada-hidden"> Lewis A. Coburn</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:lcoburn@buffalo.edu">Email<span class="ada-hidden"> Lewis A. Coburn</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/coburn.html">Profile<span class="ada-hidden"> for Lewis A. Coburn</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>327 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8813</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:lcoburn@buffalo.edu">lcoburn@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Michael Cowen. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/cowen/_jcr_content/profileinfo.img.60.60.z.jpg/1561407843600.jpg" srcset="/content/shared/cas/math/faculty/cowen/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407843600.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Michael Cowen. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/cowen/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407843600.jpg" data-srcset="/content/shared/cas/math/faculty/cowen/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407843600.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cowen.html"> <b>Michael Cowen<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Massachusetts Institute of Technology</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>317 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8803</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:cowen@buffalo.edu">cowen@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Complex differential geometry</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8803">Call<span class="ada-hidden"> Michael Cowen</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:cowen@buffalo.edu">Email<span class="ada-hidden"> Michael Cowen</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cowen.html">Profile<span class="ada-hidden"> for Michael Cowen</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>317 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8803</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:cowen@buffalo.edu">cowen@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Thomas Cusick. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/cusick/_jcr_content/profileinfo.img.60.60.z.jpg/1561407860916.jpg" srcset="/content/shared/cas/math/faculty/cusick/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407860916.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Thomas Cusick. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/cusick/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407860916.jpg" data-srcset="/content/shared/cas/math/faculty/cusick/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407860916.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cusick.html"> <b>Thomas Cusick<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Cambridge University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>315 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8801</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:cusick@buffalo.edu">cusick@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Cryptography, number theory, Diophantine approximation</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8801">Call<span class="ada-hidden"> Thomas Cusick</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:cusick@buffalo.edu">Email<span class="ada-hidden"> Thomas Cusick</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cusick.html">Profile<span class="ada-hidden"> for Thomas Cusick</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>315 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8801</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:cusick@buffalo.edu">cusick@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/dimock/_jcr_content/profileinfo.img.60.60.z.jpg/1561407878271.jpg" srcset="/content/shared/cas/math/faculty/dimock/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407878271.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/dimock/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407878271.jpg" data-srcset="/content/shared/cas/math/faculty/dimock/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407878271.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/dimock.html"> <b>Jonathan Dimock<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Harvard University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>323 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8809</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:dimock@buffalo.edu">dimock@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Mathematical physics, quantum field theory</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8809">Call<span class="ada-hidden"> Jonathan Dimock</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:dimock@buffalo.edu">Email<span class="ada-hidden"> Jonathan Dimock</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/dimock.html">Profile<span class="ada-hidden"> for Jonathan Dimock</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>323 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8809</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:dimock@buffalo.edu">dimock@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Sergey Dyachenko, PhD. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/dyachenko/_jcr_content/profileinfo.img.60.60.z.jpg/1603301854800.jpg" srcset="/content/shared/cas/math/faculty/dyachenko/jcr:content/profileinfo.img.120.120.z.q65.jpg/1603301854800.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Sergey Dyachenko, PhD. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/dyachenko/jcr%3acontent/profileinfo.img.60.60.z.jpg/1603301854800.jpg" data-srcset="/content/shared/cas/math/faculty/dyachenko/jcr:content/profileinfo.img.120.120.z.q65.jpg/1603301854800.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/dyachenko.html"> <b>Sergey Dyachenko<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Applied Mathematics, University of New Mexico</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>312 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8797</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:sergeydy@buffalo.edu">sergeydy@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Applied mathematics, nonlinear waves, free surface wave, integrable systems, spectral methods, mathematical physics, scientific computing, mathematical biology, potenial theory</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8797">Call<span class="ada-hidden"> Sergey Dyachenko</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:sergeydy@buffalo.edu">Email<span class="ada-hidden"> Sergey Dyachenko</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/dyachenko.html">Profile<span class="ada-hidden"> for Sergey Dyachenko</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>312 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8797</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:sergeydy@buffalo.edu">sergeydy@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="James Faran. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/faran/_jcr_content/profileinfo.img.60.60.z.jpg/1561407893544.jpg" srcset="/content/shared/cas/math/faculty/faran/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407893544.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="James Faran. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/faran/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407893544.jpg" data-srcset="/content/shared/cas/math/faculty/faran/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407893544.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/faran.html"> <b>James Faran<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of California/Berkeley</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>215 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8776</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:jjfaran@buffalo.edu">jjfaran@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Differential geometry, complex variables</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8776">Call<span class="ada-hidden"> James Faran</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:jjfaran@buffalo.edu">Email<span class="ada-hidden"> James Faran</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/faran.html">Profile<span class="ada-hidden"> for James Faran</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>215 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8776</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:jjfaran@buffalo.edu">jjfaran@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Brian Hassard. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/hassard/_jcr_content/profileinfo.img.60.60.z.jpg/1561407913709.jpg" srcset="/content/shared/cas/math/faculty/hassard/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407913709.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Brian Hassard. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hassard/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407913709.jpg" data-srcset="/content/shared/cas/math/faculty/hassard/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407913709.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hassard.html"> <b>Brian Hassard<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Cornell University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>322 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8808</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:hassard@buffalo.edu">hassard@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Applied mathematics, bifurcation theory, precise numerical algorithms.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8808">Call<span class="ada-hidden"> Brian Hassard</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:hassard@buffalo.edu">Email<span class="ada-hidden"> Brian Hassard</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hassard.html">Profile<span class="ada-hidden"> for Brian Hassard</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>322 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8808</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:hassard@buffalo.edu">hassard@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Richard Hollister, PhD. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/hollister/_jcr_content/profileinfo.img.60.60.z.jpg/1598383126469.jpg" srcset="/content/shared/cas/math/faculty/hollister/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598383126469.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Richard Hollister, PhD. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hollister/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598383126469.jpg" data-srcset="/content/shared/cas/math/faculty/hollister/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598383126469.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hollister.html"> <b>Richard A. Hollister<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Western Michigan University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>326 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:rahollis@buffalo.edu">rahollis@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Visiting Assistant Professor</div><div class="profileinfo-teaser-school-title">Virtual office hours: MWF 2:00 - 3:00 pm via Discord</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Linear algebra, matrix analysis, matrix theory, eigenvalue problems, inverse problems, numerical analysis, polynomial matrices, rational matrices.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-">Call<span class="ada-hidden"> Richard A. Hollister</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:rahollis@buffalo.edu">Email<span class="ada-hidden"> Richard A. Hollister</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hollister.html">Profile<span class="ada-hidden"> for Richard A. Hollister</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>326 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:rahollis@buffalo.edu">rahollis@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/hudson/_jcr_content/profileinfo.img.60.60.z.jpg/1631623889179.jpg" srcset="/content/shared/cas/math/faculty/hudson/jcr:content/profileinfo.img.120.120.z.q65.jpg/1631623889179.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hudson/jcr%3acontent/profileinfo.img.60.60.z.jpg/1631623889179.jpg" data-srcset="/content/shared/cas/math/faculty/hudson/jcr:content/profileinfo.img.120.120.z.q65.jpg/1631623889179.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hudson.html"> <b>Tara Hudson<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD,</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>201 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8769</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:tarahuds@buffalo.edu">tarahuds@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Clinical Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Algebra, Representation Theory, Mathematics Education</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8769">Call<span class="ada-hidden"> Tara Hudson</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:tarahuds@buffalo.edu">Email<span class="ada-hidden"> Tara Hudson</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hudson.html">Profile<span class="ada-hidden"> for Tara Hudson</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>201 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8769</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:tarahuds@buffalo.edu">tarahuds@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Joseph Hundley. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/hundley/_jcr_content/profileinfo.img.60.60.z.jpg/1598020704382.jpg" srcset="/content/shared/cas/math/faculty/hundley/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020704382.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Joseph Hundley. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hundley/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598020704382.jpg" data-srcset="/content/shared/cas/math/faculty/hundley/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020704382.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hundley.html"> <b>Joseph Hundley<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Columbia University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>203 & 232 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8771 & (716) 645-8784</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:jahundle@buffalo.edu">jahundle@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Professor, Director of Undergraduate Studies</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Automorphic forms and L-functions</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8771%20&%20(716)%20645-8784">Call<span class="ada-hidden"> Joseph Hundley</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:jahundle@buffalo.edu">Email<span class="ada-hidden"> Joseph Hundley</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hundley.html">Profile<span class="ada-hidden"> for Joseph Hundley</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>203 & 232 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8771 & (716) 645-8784</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:jahundle@buffalo.edu">jahundle@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Modified since last publication\'><img height="60" alt="Kimberly E. Javor. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/kim-javor/_jcr_content/profileinfo.img.60.60.z.jpg/1598387339964.jpg" srcset="/content/shared/cas/math/faculty/kim-javor/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598387339964.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Modified since last publication\'><img height="60" alt="Kimberly E. Javor. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/kim-javor/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598387339964.jpg" data-srcset="/content/shared/cas/math/faculty/kim-javor/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598387339964.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kim-javor.html"> <b>Kimberly E. Javor</b> </a><div class="profileinfo-teaser-degree">MA, MS</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>101 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8826 & (716) 645-8125</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:kejavor@buffalo.edu">kejavor@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Clinical Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8826%20&%20(716)%20645-8125">Call<span class="ada-hidden"> Kimberly E. Javor</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:kejavor@buffalo.edu">Email<span class="ada-hidden"> Kimberly E. Javor</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kim-javor.html">Profile<span class="ada-hidden"> for Kimberly E. Javor</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>101 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8826 & (716) 645-8125</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:kejavor@buffalo.edu">kejavor@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Prosenjit Kundu, PhD. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/kundu/_jcr_content/profileinfo.img.60.60.z.jpg/1629919954710.jpg" srcset="/content/shared/cas/math/faculty/kundu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1629919954710.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Prosenjit Kundu, PhD. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/kundu/jcr%3acontent/profileinfo.img.60.60.z.jpg/1629919954710.jpg" data-srcset="/content/shared/cas/math/faculty/kundu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1629919954710.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kundu.html"> <b>Prosenjit Kundu<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, National Institute of Technology Durgapur, India</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>305 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8804</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:pkundu@buffalo.edu">pkundu@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Visiting Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Networks, Dynamics</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8804">Call<span class="ada-hidden"> Prosenjit Kundu</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:pkundu@buffalo.edu">Email<span class="ada-hidden"> Prosenjit Kundu</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kundu.html">Profile<span class="ada-hidden"> for Prosenjit Kundu</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>305 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8804</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:pkundu@buffalo.edu">pkundu@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Cagatay Kutluhan. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/kutluhan/_jcr_content/profileinfo.img.60.60.z.jpg/1615303692347.jpg" srcset="/content/shared/cas/math/faculty/kutluhan/jcr:content/profileinfo.img.120.120.z.q65.jpg/1615303692347.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Cagatay Kutluhan. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/kutluhan/jcr%3acontent/profileinfo.img.60.60.z.jpg/1615303692347.jpg" data-srcset="/content/shared/cas/math/faculty/kutluhan/jcr:content/profileinfo.img.120.120.z.q65.jpg/1615303692347.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kutluhan.html"> <b>Cagatay Kutluhan<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Michigan</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>117 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8768</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:kutluhan@buffalo.edu">kutluhan@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Low-dimensional topology, contact and symplectic geometry, gauge theory.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8768">Call<span class="ada-hidden"> Cagatay Kutluhan</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:kutluhan@buffalo.edu">Email<span class="ada-hidden"> Cagatay Kutluhan</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kutluhan.html">Profile<span class="ada-hidden"> for Cagatay Kutluhan</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>117 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8768</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:kutluhan@buffalo.edu">kutluhan@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Hanfeng Li. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/hanfeng-li/_jcr_content/profileinfo.img.60.60.z.jpg/1604590848166.jpg" srcset="/content/shared/cas/math/faculty/hanfeng-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1604590848166.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Hanfeng Li. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hanfeng-li/jcr%3acontent/profileinfo.img.60.60.z.jpg/1604590848166.jpg" data-srcset="/content/shared/cas/math/faculty/hanfeng-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1604590848166.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hanfeng-li.html"> <b>Hanfeng Li<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of California at Berkeley</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>104 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8762</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:hfli@buffalo.edu">hfli@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Operator algebras, noncommutative geometry, and dynamical systems.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8762">Call<span class="ada-hidden"> Hanfeng Li</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:hfli@buffalo.edu">Email<span class="ada-hidden"> Hanfeng Li</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hanfeng-li.html">Profile<span class="ada-hidden"> for Hanfeng Li</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>104 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8762</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:hfli@buffalo.edu">hfli@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Xiaoqing Li. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/xiaoqing-li/_jcr_content/profileinfo.img.60.60.z.jpg/1572912816471.jpg" srcset="/content/shared/cas/math/faculty/xiaoqing-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1572912816471.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Xiaoqing Li. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/xiaoqing-li/jcr%3acontent/profileinfo.img.60.60.z.jpg/1572912816471.jpg" data-srcset="/content/shared/cas/math/faculty/xiaoqing-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1572912816471.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/xiaoqing-li.html"> <b>Xiaoqing Li<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Rutgers University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>202 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8770</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:xl29@buffalo.edu">xl29@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Number theory, automorphic forms and L-functions</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8770">Call<span class="ada-hidden"> Xiaoqing Li</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:xl29@buffalo.edu">Email<span class="ada-hidden"> Xiaoqing Li</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/xiaoqing-li.html">Profile<span class="ada-hidden"> for Xiaoqing Li</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>202 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8770</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:xl29@buffalo.edu">xl29@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Yiqiang Li. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/yiqiang-li/_jcr_content/profileinfo.img.60.60.z.jpg/1630610685359.jpg" srcset="/content/shared/cas/math/faculty/yiqiang-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1630610685359.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Yiqiang Li. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/yiqiang-li/jcr%3acontent/profileinfo.img.60.60.z.jpg/1630610685359.jpg" data-srcset="/content/shared/cas/math/faculty/yiqiang-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1630610685359.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/yiqiang-li.html"> <b>Yiqiang Li<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Kansas State University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>212 & 230 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8830 (Jenny Russell, 716-645-8782)</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:gsdmath@buffalo.edu">gsdmath@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-title">Director of Graduate Studies</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Geometric Representation Theory</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8830%20%20(Jenny%20Russell,%20716-645-8782)">Call<span class="ada-hidden"> Yiqiang Li</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:gsdmath@buffalo.edu">Email<span class="ada-hidden"> Yiqiang Li</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/yiqiang-li.html">Profile<span class="ada-hidden"> for Yiqiang Li</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>212 & 230 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8830 (Jenny Russell, 716-645-8782)</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:gsdmath@buffalo.edu">gsdmath@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Jonathan Lottes. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/lottes/_jcr_content/profileinfo.img.60.60.z.jpg/1629739948382.jpg" srcset="/content/shared/cas/math/faculty/lottes/jcr:content/profileinfo.img.120.120.z.q65.jpg/1629739948382.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Jonathan Lottes. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/lottes/jcr%3acontent/profileinfo.img.60.60.z.jpg/1629739948382.jpg" data-srcset="/content/shared/cas/math/faculty/lottes/jcr:content/profileinfo.img.120.120.z.q65.jpg/1629739948382.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/lottes.html"> <b>Jonathan Lottes<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University at Buffalo</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>211 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8775</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:jllottes@buffalo.edu">jllottes@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Clinical Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> (forthcoming)</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8775">Call<span class="ada-hidden"> Jonathan Lottes</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:jllottes@buffalo.edu">Email<span class="ada-hidden"> Jonathan Lottes</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/lottes.html">Profile<span class="ada-hidden"> for Jonathan Lottes</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>211 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8775</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:jllottes@buffalo.edu">jllottes@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Johanna Mangahas. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/mangahas/_jcr_content/profileinfo.img.60.60.z.jpg/1561408120181.jpg" srcset="/content/shared/cas/math/faculty/mangahas/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408120181.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Johanna Mangahas. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/mangahas/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408120181.jpg" data-srcset="/content/shared/cas/math/faculty/mangahas/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408120181.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/mangahas.html"> <b>Johanna Mangahas<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Michigan</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>116 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8767</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:mangahas@buffalo.edu">mangahas@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Geometric topology, geometric group theory.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8767">Call<span class="ada-hidden"> Johanna Mangahas</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:mangahas@buffalo.edu">Email<span class="ada-hidden"> Johanna Mangahas</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/mangahas.html">Profile<span class="ada-hidden"> for Johanna Mangahas</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>116 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8767</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:mangahas@buffalo.edu">mangahas@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/marino/_jcr_content/profileinfo.img.60.60.z.jpg/1635264087633.jpg" srcset="/content/shared/cas/math/faculty/marino/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635264087633.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/marino/jcr%3acontent/profileinfo.img.60.60.z.jpg/1635264087633.jpg" data-srcset="/content/shared/cas/math/faculty/marino/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635264087633.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/marino.html"> <b>Mark Marino<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD,</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>237 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8778</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:mrmarino@buffalo.edu">mrmarino@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Lecturer</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> (forthcoming)</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8778">Call<span class="ada-hidden"> Mark Marino</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:mrmarino@buffalo.edu">Email<span class="ada-hidden"> Mark Marino</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/marino.html">Profile<span class="ada-hidden"> for Mark Marino</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>237 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8778</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:mrmarino@buffalo.edu">mrmarino@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Naoki Masuda. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/masuda/_jcr_content/profileinfo.img.60.60.z.jpg/1631623099792.jpg" srcset="/content/shared/cas/math/faculty/masuda/jcr:content/profileinfo.img.120.120.z.q65.jpg/1631623099792.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Naoki Masuda. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/masuda/jcr%3acontent/profileinfo.img.60.60.z.jpg/1631623099792.jpg" data-srcset="/content/shared/cas/math/faculty/masuda/jcr:content/profileinfo.img.120.120.z.q65.jpg/1631623099792.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/masuda.html"> <b>Naoki Masuda<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Tokyo</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>318 Mathematics Building</p><p>University at Buffalo, North Campus</p><p>Phone: (716) 645-8804</p><p><a class="longtext" href="mailto:naokimas@buffalo.edu">naokimas@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Applied Mathematics — Applied Probability and Statistics, Dynamical Systems, Stability and Bifurcation, Stochastic Processes.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8804">Call<span class="ada-hidden"> Naoki Masuda</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:naokimas@buffalo.edu">Email<span class="ada-hidden"> Naoki Masuda</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/masuda.html">Profile<span class="ada-hidden"> for Naoki Masuda</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>318 Mathematics Building</p><p>University at Buffalo, North Campus</p><p>Phone: (716) 645-8804</p><p><a class="longtext" href="mailto:naokimas@buffalo.edu">naokimas@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="William W. Menasco. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/menasco/_jcr_content/profileinfo.img.60.60.z.jpg/1598021068832.jpg" srcset="/content/shared/cas/math/faculty/menasco/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598021068832.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="William W. Menasco. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/menasco/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598021068832.jpg" data-srcset="/content/shared/cas/math/faculty/menasco/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598021068832.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/menasco.html"> <b>William W. Menasco<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of California at Berkeley</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>112 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8765</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:menasco@buffalo.edu">menasco@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Low-dimensional topology, hyperbolic geometry and 3-manifolds, knot theory, contact geometry, curve complex and mapping class group.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8765">Call<span class="ada-hidden"> William W. Menasco</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:menasco@buffalo.edu">Email<span class="ada-hidden"> William W. Menasco</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/menasco.html">Profile<span class="ada-hidden"> for William W. Menasco</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>112 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8765</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:menasco@buffalo.edu">menasco@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Sarah F. Muldoon. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/sarah-muldoon/_jcr_content/profileinfo.img.60.60.z.jpg/1599504046635.jpg" srcset="/content/shared/cas/math/faculty/sarah-muldoon/jcr:content/profileinfo.img.120.120.z.q65.jpg/1599504046635.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Sarah F. Muldoon. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/sarah-muldoon/jcr%3acontent/profileinfo.img.60.60.z.jpg/1599504046635.jpg" data-srcset="/content/shared/cas/math/faculty/sarah-muldoon/jcr:content/profileinfo.img.120.120.z.q65.jpg/1599504046635.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sarah-muldoon.html"> <b>Sarah F. Muldoon<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Michigan, Physics (2009)</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>208 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8774</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:smuldoon@buffalo.edu">smuldoon@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Dr. Muldoon's group develops novel techniques and measures to investigate and quantify the role of network organization in brain function. This work is grounded in network theory, a field that draws upon tools from mathematics, physics, engineering, and computer science to understand, predict, and describe complex interactions in systems of connected elements.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8774">Call<span class="ada-hidden"> Sarah F. Muldoon</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:smuldoon@buffalo.edu">Email<span class="ada-hidden"> Sarah F. Muldoon</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sarah-muldoon.html">Profile<span class="ada-hidden"> for Sarah F. Muldoon</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>208 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8774</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:smuldoon@buffalo.edu">smuldoon@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Corey Placito. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/placito/_jcr_content/profileinfo.img.60.60.z.jpg/1635264031975.jpg" srcset="/content/shared/cas/math/faculty/placito/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635264031975.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Corey Placito. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/placito/jcr%3acontent/profileinfo.img.60.60.z.jpg/1635264031975.jpg" data-srcset="/content/shared/cas/math/faculty/placito/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635264031975.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/placito.html"> <b>Corey Placito<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD,</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>237 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8778</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:coreypla@buffalo.edu">coreypla@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Lecturer</div><div class="profileinfo-teaser-school-title">Office hours: Tuesday/Thursday 3pm - 4pm</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Graph Theory</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8778">Call<span class="ada-hidden"> Corey Placito</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:coreypla@buffalo.edu">Email<span class="ada-hidden"> Corey Placito</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/placito.html">Profile<span class="ada-hidden"> for Corey Placito</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>237 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8778</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:coreypla@buffalo.edu">coreypla@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Barbara Prinari. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/prinari/_jcr_content/profileinfo.img.60.60.z.jpg/1561408185332.jpg" srcset="/content/shared/cas/math/faculty/prinari/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408185332.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Barbara Prinari. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/prinari/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408185332.jpg" data-srcset="/content/shared/cas/math/faculty/prinari/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408185332.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/prinari.html"> <b>Barbara Prinari<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD in Physics, University of Lecce, Italy</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>314 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8799</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:bprinari@buffalo.edu">bprinari@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Combines analysis, applied mathematics, and concrete physical applications</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8799">Call<span class="ada-hidden"> Barbara Prinari</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:bprinari@buffalo.edu">Email<span class="ada-hidden"> Barbara Prinari</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/prinari.html">Profile<span class="ada-hidden"> for Barbara Prinari</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>314 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8799</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:bprinari@buffalo.edu">bprinari@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mohan Ramachandran. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/ramachandran/_jcr_content/profileinfo.img.60.60.z.jpg/1561408208301.jpg" srcset="/content/shared/cas/math/faculty/ramachandran/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408208301.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mohan Ramachandran. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/ramachandran/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408208301.jpg" data-srcset="/content/shared/cas/math/faculty/ramachandran/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408208301.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ramachandran.html"> <b>Mohan Ramachandran<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Illinois, Chicago, Algebraic geometry</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>204 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8772</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:ramac-m@buffalo.edu">ramac-m@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Differential and complex geometry</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8772">Call<span class="ada-hidden"> Mohan Ramachandran</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:ramac-m@buffalo.edu">Email<span class="ada-hidden"> Mohan Ramachandran</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ramachandran.html">Profile<span class="ada-hidden"> for Mohan Ramachandran</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>204 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8772</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:ramac-m@buffalo.edu">ramac-m@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="John Ringland. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/ringland/_jcr_content/profileinfo.img.60.60.z.jpg/1635263747922.jpg" srcset="/content/shared/cas/math/faculty/ringland/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263747922.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="John Ringland. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/ringland/jcr%3acontent/profileinfo.img.60.60.z.jpg/1635263747922.jpg" data-srcset="/content/shared/cas/math/faculty/ringland/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263747922.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ringland.html"> <b>John Ringland<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Texas, Austin</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>206 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8773</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:ringland@buffalo.edu">ringland@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Chair, Associate Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Applied mathematics, bifurcation theory, mathematical modeling, computational mathematics.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8773">Call<span class="ada-hidden"> John Ringland</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:ringland@buffalo.edu">Email<span class="ada-hidden"> John Ringland</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ringland.html">Profile<span class="ada-hidden"> for John Ringland</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>206 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8773</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:ringland@buffalo.edu">ringland@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Michael A. Rosas. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/michael-rosas/_jcr_content/profileinfo.img.60.60.z.jpg/1566307923771.jpg" srcset="/content/shared/cas/math/faculty/michael-rosas/jcr:content/profileinfo.img.120.120.z.q65.jpg/1566307923771.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Michael A. Rosas. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/michael-rosas/jcr%3acontent/profileinfo.img.60.60.z.jpg/1566307923771.jpg" data-srcset="/content/shared/cas/math/faculty/michael-rosas/jcr:content/profileinfo.img.120.120.z.q65.jpg/1566307923771.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/michael-rosas.html"> <b>Michael A. Rosas<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University at Buffalo</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>217 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8777</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:marosas@buffalo.edu">marosas@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Clinical Assistant Professor, Calculus Coordinator</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Representation theory; representation theory of symmetric groups; mathematics education.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8777">Call<span class="ada-hidden"> Michael A. Rosas</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:marosas@buffalo.edu">Email<span class="ada-hidden"> Michael A. Rosas</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/michael-rosas.html">Profile<span class="ada-hidden"> for Michael A. Rosas</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>217 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8777</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:marosas@buffalo.edu">marosas@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Gershon Sageev. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/sage/_jcr_content/profileinfo.img.60.60.z.jpg/1561408242607.jpg" srcset="/content/shared/cas/math/faculty/sage/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408242607.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Gershon Sageev. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/sage/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408242607.jpg" data-srcset="/content/shared/cas/math/faculty/sage/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408242607.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sage.html"> <b>Gershon Sageev<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Hebrew University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>310 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8789</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:gershons@buffalo.edu">gershons@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Set theory-infinite combinatorics, models, forcing, applications</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8789">Call<span class="ada-hidden"> Gershon Sageev</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:gershons@buffalo.edu">Email<span class="ada-hidden"> Gershon Sageev</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sage.html">Profile<span class="ada-hidden"> for Gershon Sageev</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>310 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8789</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:gershons@buffalo.edu">gershons@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building, UB North Campus. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/samul/_jcr_content/profileinfo.img.60.60.z.jpg/1561408259514.jpg" srcset="/content/shared/cas/math/faculty/samul/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408259514.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building, UB North Campus. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/samul/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408259514.jpg" data-srcset="/content/shared/cas/math/faculty/samul/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408259514.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/samul.html"> <b>Angela Samul<span>,</span></b><small> EdM</small> </a><div class="profileinfo-teaser-degree">\ufeffEdM, Mathematics Education, University at Buffalo (1993)</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>217 Baldy Hall, North Campus</p><p>UB North Campus</p><p>Phone: (716) 645-2394</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:asamul@buffalo.edu">asamul@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Director of ULC, Clinical Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-2394">Call<span class="ada-hidden"> Angela Samul</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:asamul@buffalo.edu">Email<span class="ada-hidden"> Angela Samul</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/samul.html">Profile<span class="ada-hidden"> for Angela Samul</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>217 Baldy Hall, North Campus</p><p>UB North Campus</p><p>Phone: (716) 645-2394</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:asamul@buffalo.edu">asamul@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Adam S. Sikora. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/sikora/_jcr_content/profileinfo.img.60.60.z.jpg/1598021324715.jpg" srcset="/content/shared/cas/math/faculty/sikora/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598021324715.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Adam S. Sikora. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/sikora/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598021324715.jpg" data-srcset="/content/shared/cas/math/faculty/sikora/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598021324715.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sikora.html"> <b>Adam S. Sikora<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of Maryland, College Park</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>115 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-6362</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:asikora@buffalo.edu">asikora@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Professor Sikora's main research areas are: Interactions between topology, algebra and number theory. Moduli spaces of representations, and their quantization.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-6362">Call<span class="ada-hidden"> Adam S. Sikora</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:asikora@buffalo.edu">Email<span class="ada-hidden"> Adam S. Sikora</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sikora.html">Profile<span class="ada-hidden"> for Adam S. Sikora</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>115 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-6362</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:asikora@buffalo.edu">asikora@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Brian Spencer. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/spencer/_jcr_content/profileinfo.img.60.60.z.jpg/1561408293006.jpg" srcset="/content/shared/cas/math/faculty/spencer/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408293006.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Brian Spencer. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/spencer/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408293006.jpg" data-srcset="/content/shared/cas/math/faculty/spencer/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408293006.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/spencer.html"> <b>Brian Spencer<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Northwestern University</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>319 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8805</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:spencerb@buffalo.edu">spencerb@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Applied mathematics, Mathematical Aspects of Materials Science materials modeling, free boundary problems, instabilities and microstructure formation. Current Research: Shape transitions in faceted quantum dots Liquid meniscus behavior during VLS nanowire growth</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8805">Call<span class="ada-hidden"> Brian Spencer</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:spencerb@buffalo.edu">Email<span class="ada-hidden"> Brian Spencer</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/spencer.html">Profile<span class="ada-hidden"> for Brian Spencer</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>319 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8805</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:spencerb@buffalo.edu">spencerb@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Kathlene Stephen, PhD. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/kathlene-stephen/_jcr_content/profileinfo.img.60.60.z.jpg/1635263983416.jpg" srcset="/content/shared/cas/math/faculty/kathlene-stephen/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263983416.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Kathlene Stephen, PhD. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/kathlene-stephen/jcr%3acontent/profileinfo.img.60.60.z.jpg/1635263983416.jpg" data-srcset="/content/shared/cas/math/faculty/kathlene-stephen/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263983416.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kathlene-stephen.html"> <b>Kathlene Stephen<span>,</span></b><small> MS</small> </a><div class="profileinfo-teaser-degree">MS, Mathematics, University at Buffalo</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>237 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8778; Cel/text, 716-406-8555</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:hockaday@buffalo.edu">hockaday@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Lecturer</div><div class="profileinfo-teaser-school-title">Tuesday and Thursday from 10 -11 AM EST</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Intuitionistic Logic</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8778;%20%20Cel/text,%20716-406-8555">Call<span class="ada-hidden"> Kathlene Stephen</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:hockaday@buffalo.edu">Email<span class="ada-hidden"> Kathlene Stephen</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kathlene-stephen.html">Profile<span class="ada-hidden"> for Kathlene Stephen</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>237 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8778; Cel/text, 716-406-8555</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:hockaday@buffalo.edu">hockaday@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Dane Taylor. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/Taylor/_jcr_content/profileinfo.img.60.60.z.jpg/1561408308912.jpg" srcset="/content/shared/cas/math/faculty/Taylor/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408308912.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Dane Taylor. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/Taylor/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408308912.jpg" data-srcset="/content/shared/cas/math/faculty/Taylor/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408308912.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/Taylor.html"> <b>Dane Taylor<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Applied Mathematics, University of Colorado, Boulder</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>311 Mathematics Building</p><p>UB, North Campus</p><p>Phone: (716) 645-8796</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:danet@buffalo.edu">danet@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Assistant Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Network-Data Analytics — methodology development for community detection, ranking systems, network inference, and manifold learning; Dynamics on and of Networks — nonlinear and stochastic systems including social contagions, oscillator synchronization, and network evolution.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8796">Call<span class="ada-hidden"> Dane Taylor</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:danet@buffalo.edu">Email<span class="ada-hidden"> Dane Taylor</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/Taylor.html">Profile<span class="ada-hidden"> for Dane Taylor</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>311 Mathematics Building</p><p>UB, North Campus</p><p>Phone: (716) 645-8796</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:danet@buffalo.edu">danet@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Jingbo Xia. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/jingbo-xia/_jcr_content/profileinfo.img.60.60.z.jpg/1561408343813.jpg" srcset="/content/shared/cas/math/faculty/jingbo-xia/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408343813.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Jingbo Xia. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/jingbo-xia/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408343813.jpg" data-srcset="/content/shared/cas/math/faculty/jingbo-xia/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408343813.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/jingbo-xia.html"> <b>Jingbo Xia<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, SUNY Stony Brook</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>306 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8788</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:jxia@buffalo.edu">jxia@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Analysis</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8788">Call<span class="ada-hidden"> Jingbo Xia</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:jxia@buffalo.edu">Email<span class="ada-hidden"> Jingbo Xia</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/jingbo-xia.html">Profile<span class="ada-hidden"> for Jingbo Xia</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>306 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8788</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:jxia@buffalo.edu">jxia@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Xingru Zhang. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/xingru-zhang/_jcr_content/profileinfo.img.60.60.z.jpg/1561408367851.jpg" srcset="/content/shared/cas/math/faculty/xingru-zhang/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408367851.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Xingru Zhang. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/xingru-zhang/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408367851.jpg" data-srcset="/content/shared/cas/math/faculty/xingru-zhang/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408367851.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/xingru-zhang.html"> <b>Xingru Zhang<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of British Columbia</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>111 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8764</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:xinzhang@buffalo.edu">xinzhang@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Topology and geometry of 3-dimensional manifolds, including knot theory.</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8764">Call<span class="ada-hidden"> Xingru Zhang</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:xinzhang@buffalo.edu">Email<span class="ada-hidden"> Xingru Zhang</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/xingru-zhang.html">Profile<span class="ada-hidden"> for Xingru Zhang</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>111 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8764</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:xinzhang@buffalo.edu">xinzhang@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li><li><div><div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building, UB North Campus. " width="60" class="img-60 img-60x60 cq-dd-image" src="/content/shared/cas/math/faculty/hj-zhu/_jcr_content/profileinfo.img.60.60.z.jpg/1563206568067.jpg" srcset="/content/shared/cas/math/faculty/hj-zhu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1563206568067.jpg 2x"></picture></noscript><picture class="no-display" contenttreeid=\'profileinfo\' contenttreestatus=\'Not published\'><img height="60" alt="Mathematics Building, UB North Campus. " width="60" class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hj-zhu/jcr%3acontent/profileinfo.img.60.60.z.jpg/1563206568067.jpg" data-srcset="/content/shared/cas/math/faculty/hj-zhu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1563206568067.jpg 2x"></picture><script>jQuery(\'picture.no-display\').removeClass(\'no-display\');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hj-zhu.html"> <b>Hui June Zhu<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, University of California at Berkeley</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>325 Mathematics Building</p><p>University at Buffalo, North Campus</p><p>Phone: (716) 645-8811</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:hjzhu@buffalo.edu">hjzhu@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Associate Professor</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div><div class="profileinfo-teaser-interests"><p><span class="profileinfo-teaser-interests-title">Research Interests:</span> Arithmetic Geometry and Number Theory</p></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8811">Call<span class="ada-hidden"> Hui June Zhu</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:hjzhu@buffalo.edu">Email<span class="ada-hidden"> Hui June Zhu</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hj-zhu.html">Profile<span class="ada-hidden"> for Hui June Zhu</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>325 Mathematics Building</p><p>University at Buffalo, North Campus</p><p>Phone: (716) 645-8811</p><p>Fax: (716) 645-5039</p><p><a class="longtext" href="mailto:hjzhu@buffalo.edu">hjzhu@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div></div></li></ul><div class="clear"></div></div><div class="clearfix"></div><script>\n UBCMS.list.listlimit(\'ubcms\\u002Dgen\\u002D1925196\', \'100\',\n \'100\');\n </script></div><div class="calltoaction section"><span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title">back to top</span> </span> </a> </span></div></div><div class="mobile-content-bottom" data-set="content-bottom"></div><div class="mobile-center-or-right-bottom" data-set="center-or-right-bottom"></div><div class="mobile-center-bottom-or-right-top" data-set="mobile-center-bottom-or-right-top"></div></div></div></div></div></div></div></div></div></div></div></div><footer><div class="footer inheritedreference reference parbase"><div class="footerconfigpage contentpage page basicpage"><div class="par parsys "><div class="htmlsnippet section"><div><style type="text/css">\n\n @only screen and (max-width: 720px){\n \n .simplefooter .simplefootercontents > .copyright {\n clear: both;\n position: relative;\n top: 7px;\n }\n }\n</style></div></div><div class="fatfooter section"><div class="footer-mode-simple clearfix"><a class="ub-logo-link" href="//www.buffalo.edu/"> <img class="ub-logo" src="/v-e541efb31faa2518c910054a542e1234/etc.clientlibs/wci/components/block/fatfooter/clientlibs/resources/ub-logo-175-years.png" alt="University at Buffalo The State University of New York - 175 Years: 1846-2021" width="400"/> </a><div class="footer-columns footer-columns-1"><div class="footer-column footer-column-1"><div class="col1 parsys"><div class="title section"><h2 onpaste="onPasteFilterPlainText(event)" id="title-1"> <a href="/cas/math.html">Department of Mathematics</a> </h2></div><div class="text parbase section"><p>244 Mathematics Building<br/> Buffalo, NY 14260-2900<br/> Phone: (716) 645-6284<br/> Fax: (716) 645-5039</p></div><div class="reference parbase section"><div class="unstructuredpage page basicpage"><div class="par parsys "><div class="hr hrline" style="clear:left"></div><div class="captiontext text parbase section"><p><b>About Our Photos and Videos:</b> Some photos or videos that appear on this site may have been taken prior to the COVID-19 pandemic and therefore may not accurately reflect current operations or adherence to <a href="https://www.buffalo.edu/coronavirus/health-and-safety.html" target="_blank">UB’s Health and Safety Guidelines</a>.<br/></p></div></div></div><div contenttreeid="reference-1" contenttreestatus="Not published" style="display:none;"></div></div></div></div></div><div class="copyright"><span class="copy"></span><script>jQuery(".copyright .copy").html("© " + (new Date()).getFullYear());</script> <a href="//www.buffalo.edu/">University at Buffalo</a>. All rights reserved. | <a href="//www.buffalo.edu/administrative-services/policy1/ub-policy-lib/privacy.html">Privacy</a> | <a href="//www.buffalo.edu/access/about-us/contact-us.html">Accessibility</a></div></div></div><div class="htmlsnippet section"><div><!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=UA-127757988-27"></script><script>\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag(\'js\', new Date());\n\n gtag(\'config\', \'UA-127757988-27\');\n</script></div></div></div></div><div contenttreeid="footer" contenttreestatus="Not published" style="display:none;"></div></div></footer></body></html>'
faculty = BeautifulSoup(faculty)
print(faculty.prettify())
<!DOCTYPE HTML> <html class="ubcms-65" lang="en"> <!-- cmspub01 0316-124224 --> <head> <link crossorigin="" href="https://www.googletagmanager.com/" rel="preconnect"/> <link href="https://www.googletagmanager.com/" rel="dns-prefetch"/> <link href="https://connect.facebook.net/" rel="dns-prefetch"/> <link href="https://www.google-analytics.com/" rel="dns-prefetch"/> <meta content="IE=edge" http-equiv="X-UA-Compatible"/> <meta content="text/html; charset=utf-8" http-equiv="content-type"/> <meta content="width=device-width,initial-scale=1" id="meta-viewport" name="viewport"/> <script> if (screen.width > 720 && screen.width < 960) document.getElementById('meta-viewport').setAttribute('content','width=960'); </script> <script> (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-T5KRRKT'); </script> <title> Faculty - Department of Mathematics - University at Buffalo </title> <link href="https://www.buffalo.edu/cas/math/people/faculty.html" rel="canonical"/> <meta content="2022-01-11" name="date"/> <meta content="Faculty" property="og:title"/> <meta content="https://www.buffalo.edu/etc/designs/ubcms/clientlibs-main/images/ub-social.png.img.512.auto.png/1615975612658.png" property="og:image"/> <meta content="University at Buffalo" property="og:image:alt"/> <meta content="summary_large_image" name="twitter:card"/> <link href="/v-5150cc622c68590719981526ed5c6b25/etc/designs/ubcms/clientlibs-privateauthor.min.5150cc622c68590719981526ed5c6b25.css" rel="stylesheet" type="text/css"/> <link href="/v-49ba143ee0d54e4b50b059d8fe0cb4d1/etc/designs/ubcms/clientlibs.min.49ba143ee0d54e4b50b059d8fe0cb4d1.css" rel="stylesheet" type="text/css"/> <link href="/v-9cc4b89851550cf5e105d25db85ba3e9/etc/designs/cas/math/css/main.css" rel="stylesheet" type="text/css"/> <script nomodule="" src="/v-a83c7a045b4a3c7a9600758298bc4ad8/etc/designs/ubcms/clientlibs-polyfills.min.a83c7a045b4a3c7a9600758298bc4ad8.js"> </script> <script src="/etc.clientlibs/clientlibs/granite/jquery.min.cee8557e8779d371fe722bbcdd3b3eb7.js"> </script> <script src="/v-90b621c54f984dacfd1d096327d757da/etc/designs/ubcms/clientlibs.min.90b621c54f984dacfd1d096327d757da.js"> </script> <style> body.page #page, body.page .page-inner {background-color:#FFFFFF} </style> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-67291618-1', 'auto');ga('send', 'pageview'); </script> <style> img.lazyload,img.lazyloading{position:relative;background:#EEE} img.lazyload:before,img.lazyloading:before{content:"";background:#EEE;position:absolute;top:0;left:0;bottom:0;right:0} </style> </head> <body class="contentpage page"> <noscript> <iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-T5KRRKT" style="display:none;visibility:hidden" width="0"> </iframe> </noscript> <nav aria-label="skip to content"> <a href="#skip-to-content" id="skip-to-content-link"> Skip to Content </a> </nav> <div> </div> <div id="page"> <div class="page-inner"> <div class="page-inner-1"> <div class="page-inner-2"> <div class="page-inner-2a"> </div> <div class="page-inner-3"> <header> <div class="innerheader inheritedreference reference parbase"> <div class="headerconfigpage contentpage page basicpage"> <div class="par parsys"> <div class="alertbanner reference parbase section"> <div contenttreeid="alertbanner" contenttreestatus="Not published" style="display:none;"> </div> <script> jQuery('.cap-message').detach().insertBefore('#page').wrap('<section aria-label="UB Alert">'); </script> </div> <div class="header section"> <style> .innerheader { padding-top: 158px } .header { height: 158px } .header .main { height: 134px } </style> <div> <div class="top theme-blue" data-set="header-links"> <ul class="school-links"> <li> <a href="http://arts-sciences.buffalo.edu/"> College of Arts and Sciences </a> </li> </ul> <ul class="pervasive-links"> <li> <a href="//www.buffalo.edu"> UB Home </a> </li> <li> <a href="//www.buffalo.edu/maps"> Maps </a> </li> <li> <a href="//www.buffalo.edu/directory/"> UB Directory </a> </li> </ul> </div> <div class="main theme-blue brand-extension lines-1"> <div class="lockup"> <a href="//www.buffalo.edu"> <i class="icon icon-ub-logo"> </i> <span class="ada-hidden"> University at Buffalo </span> <span class="logo"> <img alt="" class="black" height="20" src="/v-be9166b6b4a1ea7e5771e2eba1d410cf/etc.clientlibs/wci/components/block/header/clientlibs/resources/ub-logo-black.png" width="181"/> </span> </a> <div class="mobile-links" data-set="header-links"> </div> <a class="title" href="/cas/math.html"> Department of Mathematics </a> </div> <div class="social" data-set="headersocial"> </div> <div class="tasknav" data-set="tasknav"> <div class="buttoncomponent sidebyside orange"> <a href="http://www.buffalo.edu/ub_admissions/apply-now.html" target="_blank"> Apply to UB </a> </div> <div class="buttoncomponent sidebyside blue"> <a href="http://www.buffalo.edu/cas/math/about-us/contact-us.html"> Contact Us </a> </div> <div class="buttoncomponent sidebyside green"> <a href="https://ubfoundation.buffalo.edu/giving/?gift_allocation=01-3-0-01240" target="_blank"> Support UB Math </a> </div> </div> </div> </div> </div> <div class="reference parbase section"> <div class="unstructuredpage page basicpage"> <div class="par parsys"> <div class="list parbase section"> <div data-columnize-row="1" id="ubcms-gen-1925085"> <ul class="list-style-detail" data-columnize="1"> <li> <div class="long-term-alert-banner"> <div class="text parbase section"> <p> <b> COVID-19 UPDATES • 3/4/2022 </b> </p> <ul> <li> <a href="/coronavirus/latest-update.html"> UB lifts vaccination policy for campus events </a> </li> </ul> </div> </div> </li> </ul> </div> <script> UBCMS.list.listlimit('ubcms\u002Dgen\u002D1925085', '100', '100'); </script> </div> <script> UBCMS.longTermAlert.init() </script> </div> </div> <div contenttreeid="reference" contenttreestatus="Not published" style="display:none;"> </div> </div> <div class="mobilemenu section"> <!--noindex--> <nav aria-label="mobile navigation menu"> <ul> <li class="mobileheader-button-menu" style="display: none"> <a href="#"> Menu </a> </li> <li class="mobileheader-button-search" style="display: none"> <a href="#"> Search </a> </li> </ul> </nav> <!--endnoindex--> <div class="menu" id="mobile-search"> <div class="menu-inner" data-set="mobile-search" id="mobile-search-inner"> </div> </div> <div class="menu" id="mobile-menu"> <div class="menu-inner"> <div id="mobile-menu-inner"> <div class="loading"> <!--noindex--> Loading menu... <!--endnoindex--> </div> </div> <div class="tasknav" data-set="tasknav"> </div> <div class="headersocial" data-set="headersocial"> </div> </div> </div> <script> jQuery('.mobileheader-button-menu').removeAttr('style'); jQuery(document).ready(function() { if ($('.topnav .search .search-content').length > 0) { $('.mobileheader-button-search').removeAttr('style'); } }); UBCMS.rwd.mobileMenu.load('\/content\/cas\/math\/jcr:content.nav.html', 'https:\/\/www.buffalo.edu\/cas\/math\/people\/faculty.html'); </script> </div> <div class="topnav section"> <nav aria-label="site navigation" class="topnav-inner"> <div class="main"> <ul class="menu"> <li class="first theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/about-us.html" id="ubcms-gen-1925095"> <span class="container"> About </span> </a> <div aria-labelledby="ubcms-gen-1925095" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="About:Why Choose Us?" href="/cas/math/about-us/why-choose.html"> Why Choose Us? </a> </li> <li> <a aria-label="About:Our Mission" href="/cas/math/about-us/our-mission.html"> Our Mission </a> </li> <li> <a aria-label="About:Our Alumni, Students, and Faculty" href="/cas/math/about-us/our-alumni.html"> Our Alumni, Students, and Faculty </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Our Alumni, Students, and Faculty:Our Alumni" href="/cas/math/about-us/our-alumni/our-alumni.html"> Our Alumni </a> </li> <li> <a aria-label="Our Alumni, Students, and Faculty:Our Students" href="/cas/math/about-us/our-alumni/our-students.html"> Our Students </a> </li> <li class="last"> <a aria-label="Our Alumni, Students, and Faculty:Our Faculty" href="/cas/math/about-us/our-alumni/our-faculty.html"> Our Faculty </a> </li> </ul> </div> </li> <li> <a aria-label="About:Memberships" href="/cas/math/about-us/memberships.html"> Memberships </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Memberships:American Mathematical Society" href="/cas/math/about-us/memberships/AMS.html"> American Mathematical Society </a> </li> <li> <a aria-label="Memberships:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html"> Association for Women in Mathematics </a> </li> <li class="last"> <a aria-label="Memberships:Mathematical Sciences Research Institute" href="/cas/math/about-us/memberships/MSRI.html"> Mathematical Sciences Research Institute </a> </li> </ul> </div> </li> <li> <a aria-label="About:Mathematicians of the African Diaspora" href="/cas/math/about-us/mathematicians-of-the-african-diaspora.html"> Mathematicians of the African Diaspora </a> </li> <li> <a aria-label="About:About the University" href="/cas/math/about-us/about-the-university.html"> About the University </a> </li> <li> <a aria-label="About:About Buffalo-Niagara" href="/cas/math/about-us/the-buffalo-niagara-region.html"> About Buffalo-Niagara </a> </li> <li> <a aria-label="About:Visiting UB" href="/cas/math/news-events/visiting.html"> Visiting UB </a> </li> <li class="last"> <a aria-label="About:Contact Us" href="/cas/math/about-us/contact-us.html"> Contact Us </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray active-trail"> <a aria-haspopup="true" href="/cas/math/people.html" id="ubcms-gen-1925114"> <span class="container"> People </span> </a> <div aria-labelledby="ubcms-gen-1925114" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first active-trail"> <a aria-label="People:Faculty" class="active" href="/cas/math/people/faculty.html"> Faculty </a> </li> <li> <a aria-label="People:Staff" href="/cas/math/people/staff_directory.html"> Staff </a> </li> <li> <a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html"> Emeriti Faculty </a> </li> <li> <a aria-label="People:Instructors" href="/cas/math/people/instructors.html"> Instructors </a> </li> <li> <a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html"> Visiting Scholars </a> </li> <li> <a aria-label="People:Graduate Student Directory" href="/cas/math/people/grad-directory.html"> Graduate Student Directory </a> </li> <li class="last"> <a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html"> Alumni </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html"> Class of 2021 </a> </li> <li> <a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html"> Class of 2020 </a> </li> <li class="last"> <a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html"> PhD Recipients, 2010 to Present </a> </li> </ul> </div> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/research.html" id="ubcms-gen-1925123"> <span class="container"> Research </span> </a> <div aria-labelledby="ubcms-gen-1925123" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="Research:Algebra" href="/cas/math/research/algebra.html"> Algebra </a> </li> <li> <a aria-label="Research:Analysis" href="/cas/math/research/analysis.html"> Analysis </a> </li> <li> <a aria-label="Research:Applied Mathematics" href="/cas/math/research/applied-mathematics.html"> Applied Mathematics </a> </li> <li> <a aria-label="Research:Geometry and Topology " href="/cas/math/research/geometry-topology.html"> Geometry and Topology </a> </li> <li class="last"> <a aria-label="Research:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html"> Undergraduate Research </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/ug.html" id="ubcms-gen-1925129"> <span class="container"> Undergraduate </span> </a> <div aria-labelledby="ubcms-gen-1925129" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="Undergraduate:Undergraduate Programs" href="/cas/math/ug/undergraduate-programs.html"> Undergraduate Programs </a> </li> <li> <a aria-label="Undergraduate:Undergraduate Research" href="/cas/math/ug/undergraduate-research.html"> Undergraduate Research </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Undergraduate Research:Special Research Projects" href="/cas/math/ug/undergraduate-research/special-projects.html"> Special Research Projects </a> </li> <li class="last"> <a aria-label="Undergraduate Research:Summer Math Scholarship" href="/cas/math/ug/undergraduate-research/summer.html"> Summer Math Scholarship </a> </li> </ul> </div> </li> <li> <a aria-label="Undergraduate:Honors, Awards, and Scholarships" href="/cas/math/ug/honors--awards--and-scholarships.html"> Honors, Awards, and Scholarships </a> </li> <li> <a aria-label="Undergraduate:Undergraduate Courses" href="/cas/math/ug/ug-courses.html"> Undergraduate Courses </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Undergraduate Courses:Sample Syllabi" href="/cas/math/ug/ug-courses/syllabi.html"> Sample Syllabi </a> </li> <li> <a aria-label="Undergraduate Courses:MTH 121 and 122 Textbook" href="/cas/math/ug/ug-courses/mth121-122-textbook.html"> MTH 121 and 122 Textbook </a> </li> <li class="last"> <a aria-label="Undergraduate Courses:MTH 306 Textbook" href="/cas/math/ug/ug-courses/mth-306-textbook.html"> MTH 306 Textbook </a> </li> </ul> </div> </li> <li> <a aria-label="Undergraduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home"> Directed Reading Program </a> </li> <li> <a aria-label="Undergraduate:Mathematics Resources" href="/cas/math/ug/resources.html"> Mathematics Resources </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Mathematics Resources:Mathematics Placement Exam" href="/cas/math/ug/resources/mathplacement.html"> Mathematics Placement Exam </a> </li> <li> <a aria-label="Mathematics Resources:Mathematics Placement Exam Frequently Asked Questions" href="/cas/math/ug/resources/MPEFAQ.html"> Mathematics Placement Exam Frequently Asked Questions </a> </li> <li class="last"> <a aria-label="Mathematics Resources:Force Registration" href="/cas/math/ug/resources/force-registration.html"> Force Registration </a> </li> </ul> </div> </li> <li> <a aria-label="Undergraduate:Mathematics Help Center" href="/cas/math/ug/help-center.html"> Mathematics Help Center </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first last"> <a aria-label="Mathematics Help Center:Online Help Sessions" href="/content/cas/math/ug/help-center/zoom-pw.html"> Online Help Sessions </a> </li> </ul> </div> </li> <li class="last"> <a aria-label="Undergraduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html"> Association for Women in Mathematics </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/grad.html" id="ubcms-gen-1925137"> <span class="container"> Graduate </span> </a> <div aria-labelledby="ubcms-gen-1925137" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="Graduate:Master's Program" href="/cas/math/grad/master-program.html"> Master's Program </a> </li> <li> <a aria-label="Graduate:Doctoral Program (PhD)" href="/cas/math/grad/doctoral-program.html"> Doctoral Program (PhD) </a> </li> <li> <a aria-label="Graduate:Request Information" href="/cas/math/grad/request-information.html"> Request Information </a> </li> <li> <a aria-label="Graduate:Admissions" href="/cas/math/grad/grad-admissions.html"> Admissions </a> </li> <li> <a aria-label="Graduate:Courses" href="/cas/math/grad/grad-courses.html"> Courses </a> </li> <li> <a aria-label="Graduate:Directed Reading Program" href="https://sites.google.com/view/ubmathdrp/home"> Directed Reading Program </a> </li> <li> <a aria-label="Graduate:Graduate Research" href="/cas/math/grad/grad-research.html"> Graduate Research </a> </li> <li> <a aria-label="Graduate:Fellowships, Scholarships, Awards" href="/cas/math/grad/fellowships-awards.html"> Fellowships, Scholarships, Awards </a> </li> <li> <a aria-label="Graduate:PhD Recipients, 2010 to present" href="/cas/math/grad/PhD-recipients.html"> PhD Recipients, 2010 to present </a> </li> <li> <a aria-label="Graduate:Association for Women in Mathematics" href="/cas/math/about-us/memberships/AWM.html"> Association for Women in Mathematics </a> </li> <li> <a aria-label="Graduate:Graduate Student Lecture Series" href="/cas/math/grad/gsls.html"> Graduate Student Lecture Series </a> </li> <li class="last"> <a aria-label="Graduate:Graduate Student Directory" href="/cas/math/people/grad-directory.html"> Graduate Student Directory </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> <li class="theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/courses.html" id="ubcms-gen-1925149"> <span class="container"> Courses </span> </a> </li> <li class="last theme-secondary theme-standard-gray"> <a aria-haspopup="true" href="/cas/math/news-events/news.html" id="ubcms-gen-1925151"> <span class="container"> News & Events </span> </a> <div aria-labelledby="ubcms-gen-1925151" class="topnav-submenu-container"> <ul class="submenu clearfix"> <li class="first"> <a aria-label="News & Events:News" href="/cas/math/news-events/news.html"> News </a> </li> <li> <a aria-label="News & Events:Events " href="/cas/math/news-events/calendar.html"> Events </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Events :Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html"> Class of 2021 </a> </li> <li class="last"> <a aria-label="Events :Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html"> Class of 2020 </a> </li> </ul> </div> </li> <li> <a aria-label="News & Events:Myhill Lecture Series" href="/cas/math/news-events/myhill.html"> Myhill Lecture Series </a> <div class="topnav-submenu-children-container list"> <ul class="submenu-children clearfix link-list"> <li class="first"> <a aria-label="Myhill Lecture Series:Laura DeMarco, 2019" href="/cas/math/news-events/myhill/laura-demarco.html"> Laura DeMarco, 2019 </a> </li> <li> <a aria-label="Myhill Lecture Series:Mark Newman, 2018" href="/cas/math/news-events/myhill/mark-newman.html"> Mark Newman, 2018 </a> </li> <li> <a aria-label="Myhill Lecture Series:Guoliang Yu, 2017" href="/cas/math/news-events/myhill/guoliangyu.html"> Guoliang Yu, 2017 </a> </li> <li> <a aria-label="Myhill Lecture Series:Gopal Prasad, 2016" href="/cas/math/news-events/myhill/gopal-prasad.html"> Gopal Prasad, 2016 </a> </li> <li> <a aria-label="Myhill Lecture Series:Ciprian Manolescu, 2015" href="/cas/math/news-events/myhill/ciprian-manolescu.html"> Ciprian Manolescu, 2015 </a> </li> <li> <a aria-label="Myhill Lecture Series:Percy A. Deift, 2014" href="/cas/math/news-events/myhill/percy-deift.html"> Percy A. Deift, 2014 </a> </li> <li class="last"> <a aria-label="Myhill Lecture Series:Peter Sarnak, 2013" href="/cas/math/news-events/myhill/peter-sarnak.html"> Peter Sarnak, 2013 </a> </li> </ul> </div> </li> <li> <a aria-label="News & Events:NERCCS 2020" href="/cas/math/news-events/nerccs-2020.html"> NERCCS 2020 </a> </li> <li> <a aria-label="News & Events:News & Events Archive" href="/cas/math/news-events/archives.html"> News & Events Archive </a> </li> <li class="last"> <a aria-label="News & Events:Visiting UB" href="/cas/math/news-events/visiting.html"> Visiting UB </a> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </div> </li> </ul> </div> <div class="right"> <div class="search"> <!--noindex--> <div class="search-menu" tabindex="0"> <div class="search-label"> Search </div> <!-- Uses appendAround.js script to transfer this search form to mobile nav menu via data-set attribute. --> <div class="search-content" data-set="mobile-search"> <form action="/cas/math/searchresults.html" class="search-form" method="GET" onsubmit="return this.q.value != ''"> <div class="search-container" role="search"> <input aria-label="Search" autocomplete="off" class="search-input" id="ubcms-gen-1925158" name="q" placeholder="Search" type="text"/> <button aria-label="Search" class="search-submit" type="submit" value="Search"> </button> </div> </form> </div> </div> <!--endnoindex--> </div> <div class="audiencenav list parbase"> <div class="audiencenav-wrapper" tabindex="0"> <div class="label"> Info For </div> <ul> <li> <a href="/cas/math/information-for-students.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Current Students </a> </li> <li> <a href="/cas/math/ug/undergraduate-programs.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Future Undergraduate Students </a> </li> <li> <a href="/cas/math/grad.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Future Graduate Students </a> </li> <li> <a href="/cas/math/information-for-faculty-staff.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Faculty & Staff </a> </li> <li> <a href="/cas/math/people/alumni-friends.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Alumni & Friends </a> </li> <li> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html" onblur="jQuery(this).parents('.audiencenav-wrapper').removeClass('hover')" onfocus="jQuery(this).parents('.audiencenav-wrapper').addClass('hover')"> Diversity, Equity, and Inclusive Excellence Resources </a> </li> </ul> </div> </div> </div> </nav> <script> $(".topnav").accessibleDropDown(); </script> </div> </div> </div> <div contenttreeid="innerheader" contenttreestatus="Not published" style="display:none;"> </div> </div> </header> <div class="two-column clearfix" id="columns"> <div class="columns-bg columns-bg-1"> <div class="columns-bg columns-bg-2"> <div class="columns-bg columns-bg-3"> <div class="columns-bg columns-bg-4"> <div id="left"> <div class="leftnav"> <nav aria-label="section navigation" class="inner"> <div class="title"> <a href="/cas/math/people.html"> <span class="title"> People </span> </a> </div> <ul class="menu nav-level-1"> <li class="first active-trail"> <span> <a aria-label="People:Faculty" class="active" href="/cas/math/people/faculty.html"> Faculty </a> </span> <ul class="menu nav-level-2"> <li class="first"> <a aria-label="Faculty:Bernard Badzioch" href="/cas/math/people/faculty/badzioch.html"> Bernard Badzioch </a> </li> <li> <a aria-label="Faculty:Gino Biondini" href="/cas/math/people/faculty/biondini.html"> Gino Biondini </a> </li> <li> <a aria-label="Faculty:Robert Busch" href="/cas/math/people/faculty/busch.html"> Robert Busch </a> </li> <li> <a aria-label="Faculty:Michael Casper" href="/cas/math/people/faculty/casper.html"> Michael Casper </a> </li> <li> <a aria-label="Faculty:Simone Cassani" href="/cas/math/people/faculty/simone-cassani.html"> Simone Cassani </a> </li> <li> <a aria-label="Faculty:Alexandr Chernyavski" href="/cas/math/people/faculty/chernyavskiy.html"> Alexandr Chernyavski </a> </li> <li> <a aria-label="Faculty:Alexandru Chirvasitu" href="/cas/math/people/faculty/chirvasitu.html"> Alexandru Chirvasitu </a> </li> <li> <a aria-label="Faculty:Ching Chou" href="/cas/math/people/faculty/cchou.html"> Ching Chou </a> </li> <li> <a aria-label="Faculty:Lewis Coburn" href="/cas/math/people/faculty/coburn.html"> Lewis Coburn </a> </li> <li> <a aria-label="Faculty:Michael Cowen" href="/cas/math/people/faculty/cowen.html"> Michael Cowen </a> </li> <li> <a aria-label="Faculty:Thomas Cusick" href="/cas/math/people/faculty/cusick.html"> Thomas Cusick </a> </li> <li> <a aria-label="Faculty:Jonathan Dimock" href="/cas/math/people/faculty/dimock.html"> Jonathan Dimock </a> </li> <li> <a aria-label="Faculty:Sergey Dyachenko" href="/cas/math/people/faculty/dyachenko.html"> Sergey Dyachenko </a> </li> <li> <a aria-label="Faculty:James Faran" href="/cas/math/people/faculty/faran.html"> James Faran </a> </li> <li> <a aria-label="Faculty:Brian Hassard" href="/cas/math/people/faculty/hassard.html"> Brian Hassard </a> </li> <li> <a aria-label="Faculty:Richard A. Hollister" href="/cas/math/people/faculty/hollister.html"> Richard A. Hollister </a> </li> <li> <a aria-label="Faculty:Tara Hudson" href="/cas/math/people/faculty/hudson.html"> Tara Hudson </a> </li> <li> <a aria-label="Faculty:Joseph Hundley" href="/cas/math/people/faculty/hundley.html"> Joseph Hundley </a> </li> <li> <a aria-label="Faculty:Kimberly E. Javor" href="/cas/math/people/faculty/kim-javor.html"> Kimberly E. Javor </a> </li> <li> <a aria-label="Faculty:Prosenjit Kundu" href="/cas/math/people/faculty/kundu.html"> Prosenjit Kundu </a> </li> <li> <a aria-label="Faculty:Cagatay Kutluhan" href="/cas/math/people/faculty/kutluhan.html"> Cagatay Kutluhan </a> </li> <li> <a aria-label="Faculty:Hanfeng Li" href="/cas/math/people/faculty/hanfeng-li.html"> Hanfeng Li </a> </li> <li> <a aria-label="Faculty:Xiaoqing Li" href="/cas/math/people/faculty/xiaoqing-li.html"> Xiaoqing Li </a> </li> <li> <a aria-label="Faculty:Yiqiang Li" href="/cas/math/people/faculty/yiqiang-li.html"> Yiqiang Li </a> </li> <li> <a aria-label="Faculty:Jonathan Lottes" href="/cas/math/people/faculty/jonathan-lottes.html"> Jonathan Lottes </a> </li> <li> <a aria-label="Faculty:Johanna Mangahas" href="/cas/math/people/faculty/mangahas.html"> Johanna Mangahas </a> </li> <li> <a aria-label="Faculty:Mark Marino" href="/cas/math/people/faculty/marino.html"> Mark Marino </a> </li> <li> <a aria-label="Faculty:Naoki Masuda" href="/cas/math/people/faculty/naoki-masuda.html"> Naoki Masuda </a> </li> <li> <a aria-label="Faculty:William W. Menasco" href="/cas/math/people/faculty/menasco.html"> William W. Menasco </a> </li> <li> <a aria-label="Faculty:Sarah Muldoon" href="/cas/math/people/faculty/muldoon.html"> Sarah Muldoon </a> </li> <li> <a aria-label="Faculty:Corey Placito" href="/cas/math/people/faculty/placito.html"> Corey Placito </a> </li> <li> <a aria-label="Faculty:Barbara Prinari" href="/cas/math/people/faculty/prinari.html"> Barbara Prinari </a> </li> <li> <a aria-label="Faculty:Mohan Ramachandran" href="/cas/math/people/faculty/ramachandran.html"> Mohan Ramachandran </a> </li> <li> <a aria-label="Faculty:John Ringland" href="/cas/math/people/faculty/ringland.html"> John Ringland </a> </li> <li> <a aria-label="Faculty:Michael A. Rosas" href="/cas/math/people/faculty/michael-rosas.html"> Michael A. Rosas </a> </li> <li> <a aria-label="Faculty:Gershon Sageev" href="/cas/math/people/faculty/sageev.html"> Gershon Sageev </a> </li> <li> <a aria-label="Faculty:Angela Samul" href="/cas/math/people/faculty/samul.html"> Angela Samul </a> </li> <li> <a aria-label="Faculty:Adam Sikora" href="/cas/math/people/faculty/sikora.html"> Adam Sikora </a> </li> <li> <a aria-label="Faculty:Brian Spencer" href="/cas/math/people/faculty/spencer.html"> Brian Spencer </a> </li> <li> <a aria-label="Faculty:Kathlene Stephen" href="/cas/math/people/faculty/kathlene-stephen.html"> Kathlene Stephen </a> </li> <li> <a aria-label="Faculty:Dane Taylor" href="/cas/math/people/faculty/taylor.html"> Dane Taylor </a> </li> <li> <a aria-label="Faculty:Jingbo Xia" href="/cas/math/people/faculty/xia.html"> Jingbo Xia </a> </li> <li> <a aria-label="Faculty:Xingru Zhang" href="/cas/math/people/faculty/zhang.html"> Xingru Zhang </a> </li> <li class="last"> <a aria-label="Faculty:Hui June Zhu" href="/cas/math/people/faculty/hj-zhu.html"> Hui June Zhu </a> </li> </ul> </li> <li> <a aria-label="People:Staff" href="/cas/math/people/staff_directory.html"> Staff </a> </li> <li> <a aria-label="People:Emeriti Faculty" href="/cas/math/people/emeriti.html"> Emeriti Faculty </a> </li> <li> <a aria-label="People:Instructors" href="/cas/math/people/instructors.html"> Instructors </a> </li> <li> <a aria-label="People:Visiting Scholars" href="/cas/math/people/visiting-scholars.html"> Visiting Scholars </a> </li> <li> <a aria-label="People:Graduate Student Directory" href="/cas/math/people/grad-directory.html"> Graduate Student Directory </a> </li> <li class="last expand-submenu"> <a aria-label="People:Alumni" href="/cas/math/people/alumni-friends.html"> Alumni </a> <ul class="menu nav-level-2"> <li class="first expand-submenu"> <a aria-label="Alumni:Class of 2021" href="/cas/math/people/alumni-friends/class-of-2021.html"> Class of 2021 </a> </li> <li class="expand-submenu"> <a aria-label="Alumni:Class of 2020" href="/cas/math/people/alumni-friends/class-of-2020.html"> Class of 2020 </a> </li> <li class="last expand-submenu"> <a aria-label="Alumni:PhD Recipients, 2010 to Present" href="/cas/math/grad/PhD-recipients.html"> PhD Recipients, 2010 to Present </a> </li> </ul> </li> </ul> <div class="relatedLinks relatedlinksreference reference parbase"> </div> </nav> </div> <div class="mobile-left-col hide-in-narrow" data-set="mobile-center-bottom-or-right-top"> <div class="leftcol parsys iparsys" role="complementary"> <div class="iparys_inherited"> <div class="leftcol iparsys parsys"> <div class="flexmodule imagebase section"> <div class="flexmodule-inner" id="ubcms-gen-1925183"> <div class="title"> <h2> Diversity, Equity, and Inclusive Excellence Resources </h2> </div> <div class="teaser teaser-block flexmodule-style flexmodule-style-largeimg"> <div class="teaser-inner"> <div class="teaser-images"> <div class="teaser-image"> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html" target="_blank"> <noscript> <picture contenttreeid="flexmodule" contenttreestatus="Not published"> <source media="(max-width: 568px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x" type="image/png"> <source media="(max-width: 720px)" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png" type="image/png"> <source srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" type="image/png"> <img alt="Diversity, Equity, and Inclusive Excellence Resources. " class="img-209 img-209x131 cq-dd-image" height="131" src="/content/cas/math/people/_jcr_content/leftcol/flexmodule.img.209.131.png/1607108331977.png" srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" width="209"/> </source> </source> </source> </picture> </noscript> <picture class="no-display" contenttreeid="flexmodule" contenttreestatus="Not published"> <source data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.448.280.m.q50.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.576.361.m.q50.png/1607108331977.png 2x" media="(max-width: 568px)" type="image/png"> <source data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.688.431.q80.png/1607108331977.png" media="(max-width: 720px)" type="image/png"> <source data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.209.131.png/1607108331977.png, /content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" type="image/png"> <img alt="Diversity, Equity, and Inclusive Excellence Resources. " class="img-209 img-209x131 cq-dd-image lazyload" data-src="/content/cas/math/people/jcr%3acontent/leftcol/flexmodule.img.209.131.png/1607108331977.png" data-srcset="/content/cas/math/people/jcr:content/leftcol/flexmodule.img.418.262.q65.png/1607108331977.png 2x" height="131" width="209"/> </source> </source> </source> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </a> </div> </div> <div class="teaser-content"> <div class="teaser-body"> <p> UB is committed to achieving inclusive excellence in a deliberate, intentional and coordinated fashion, embedding it in every aspect of our operations. We aspire to foster a healthy, productive, ethical, fair, and affirming campus community to allow all students, faculty and staff to thrive and realize their full potential. <br/> </p> </div> <div class="teaser-links"> <div class="list"> <div data-columnize-row="1" id="ubcms-gen-1925184"> <ul class="link-list" data-columnize="1"> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/promoting-equal-employment-opportunity-and-diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> Promoting Equal Employment Opportunity and Diversity </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/IXResources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> Inclusive Excellence Resources </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/inclusion/resources/toolkits_trainings.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> Toolkits </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/studentlife/who-we-are/departments/diversity.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> UB Intercultural and Diversity Center </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="https://www.buffalo.edu/diversity-innovation.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> UB Center for Diversity Innovation </span> </span> </a> </span> </li> <li> <span class="teaser teaser-inline"> <a href="http://www.buffalo.edu/equity/external-resources.html"> <span class="teaser-inner"> <!--noindex--> <span class="teaser-date"> </span> <!--endnoindex--> <span class="teaser-title"> External Resources </span> </span> </a> </span> </li> </ul> </div> <div class="clearfix"> </div> <script> UBCMS.list.listlimit('ubcms\u002Dgen\u002D1925184', '100', '100'); </script> </div> </div> </div> </div> <div class="teaser-clear"> </div> </div> </div> <div class="flexmodule-clear"> </div> </div> </div> </div> </div> </div> </div> <script> (function() { var $firstLeftIparsysInherited = $('#left .iparys_inherited').eq(0); var $firstLeftIparsysSection = $('#left > .iparsys:first-child > .section:first-child'); var $mcbort = $('.mobile-center-bottom-or-right-top'); if ($firstLeftIparsysInherited.length && $firstLeftIparsysInherited.html().replace(/\s+|<\/?div\b[^>]*>/gi, '') === '') $firstLeftIparsysInherited.addClass('empty'); if ($firstLeftIparsysSection.length && $firstLeftIparsysSection.html().replace(/\s+|<\/?div\b[^>]*>/gi, '') === '') $firstLeftIparsysSection.addClass('empty'); if ($mcbort.length && $mcbort.html().replace(/\s+|<\/?div\b[^>]*>/gi, '') === '') $mcbort.addClass('empty'); $('[role=complementary]').each(function() { var $this = $(this); if ($this.children().filter(':not(.empty)').filter(':not(:empty)').length === 0) $this.removeAttr('role'); }); if ($('.leftcol[role=complementary]').length > 0 && $('#right[role=complementary]').length > 0) { $('.leftcol[role=complementary]').attr('aria-label', 'left column'); $('#right[role=complementary]').attr('aria-label', 'right column'); } })(); </script> <div id="skip-to-content"> </div> <div id="center" role="main"> <div class="mobile-content-top" data-set="content-top"> </div> <div class="par parsys"> <div class="title section"> <h1 id="title" onpaste="onPasteFilterPlainText(event)"> Faculty </h1> </div> <div class="title section"> <h2 id="title_2087746532" onpaste="onPasteFilterPlainText(event)"> UB Mathematics Administration </h2> </div> <div class="list parbase section"> <div data-columnize-row="1" id="ubcms-gen-1925191"> <ul class="list-style-teaser" data-columnize="1"> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Gino Biondini. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/biondini/_jcr_content/profileinfo.img.60.60.z.jpg/1600442809023.jpg" srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Gino Biondini. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/biondini/jcr%3acontent/profileinfo.img.60.60.z.jpg/1600442809023.jpg" data-srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html"> <b> Gino Biondini <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Theoretical Physics, University of Perugia, Italy </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 226 & 324 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8810 </p> <p> Fax: (716) 645 5039 </p> <p> <a class="longtext" href="mailto:biondini@buffalo.edu"> biondini@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor & Department Chair </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8810"> Call <span class="ada-hidden"> Gino Biondini </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:biondini@buffalo.edu"> Email <span class="ada-hidden"> Gino Biondini </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html"> Profile <span class="ada-hidden"> for Gino Biondini </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 226 & 324 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8810 </p> <p> Fax: (716) 645 5039 </p> <p> <a class="longtext" href="mailto:biondini@buffalo.edu"> biondini@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="John Ringland. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/ringland/_jcr_content/profileinfo.img.60.60.z.jpg/1635263747922.jpg" srcset="/content/shared/cas/math/faculty/ringland/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263747922.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="John Ringland. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/ringland/jcr%3acontent/profileinfo.img.60.60.z.jpg/1635263747922.jpg" data-srcset="/content/shared/cas/math/faculty/ringland/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263747922.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ringland.html"> <b> John Ringland <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Texas, Austin </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 206 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8773 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:ringland@buffalo.edu"> ringland@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Chair, Associate Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8773"> Call <span class="ada-hidden"> John Ringland </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:ringland@buffalo.edu"> Email <span class="ada-hidden"> John Ringland </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ringland.html"> Profile <span class="ada-hidden"> for John Ringland </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 206 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8773 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:ringland@buffalo.edu"> ringland@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Joseph Hundley. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/hundley/_jcr_content/profileinfo.img.60.60.z.jpg/1598020704382.jpg" srcset="/content/shared/cas/math/faculty/hundley/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020704382.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Joseph Hundley. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hundley/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598020704382.jpg" data-srcset="/content/shared/cas/math/faculty/hundley/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020704382.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hundley.html"> <b> Joseph Hundley <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Columbia University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 203 & 232 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8771 & (716) 645-8784 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:jahundle@buffalo.edu"> jahundle@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Professor, Director of Undergraduate Studies </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8771%20&%20(716)%20645-8784"> Call <span class="ada-hidden"> Joseph Hundley </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:jahundle@buffalo.edu"> Email <span class="ada-hidden"> Joseph Hundley </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hundley.html"> Profile <span class="ada-hidden"> for Joseph Hundley </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 203 & 232 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8771 & (716) 645-8784 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:jahundle@buffalo.edu"> jahundle@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Yiqiang Li. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/yiqiang-li/_jcr_content/profileinfo.img.60.60.z.jpg/1630610685359.jpg" srcset="/content/shared/cas/math/faculty/yiqiang-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1630610685359.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Yiqiang Li. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/yiqiang-li/jcr%3acontent/profileinfo.img.60.60.z.jpg/1630610685359.jpg" data-srcset="/content/shared/cas/math/faculty/yiqiang-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1630610685359.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/yiqiang-li.html"> <b> Yiqiang Li <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Kansas State University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 212 & 230 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8830 (Jenny Russell, 716-645-8782) </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:gsdmath@buffalo.edu"> gsdmath@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-title"> Director of Graduate Studies </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8830%20%20(Jenny%20Russell,%20716-645-8782)"> Call <span class="ada-hidden"> Yiqiang Li </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:gsdmath@buffalo.edu"> Email <span class="ada-hidden"> Yiqiang Li </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/yiqiang-li.html"> Profile <span class="ada-hidden"> for Yiqiang Li </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 212 & 230 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8830 (Jenny Russell, 716-645-8782) </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:gsdmath@buffalo.edu"> gsdmath@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> </ul> <div class="clear"> </div> </div> <div class="clearfix"> </div> <script> UBCMS.list.listlimit('ubcms\u002Dgen\u002D1925191', '100', '100'); </script> </div> <div class="title section"> <h2 id="title_901139851" onpaste="onPasteFilterPlainText(event)"> UB Mathematics Faculty (alphabetical listing) </h2> </div> <div class="list parbase section"> <div data-columnize-row="1" id="ubcms-gen-1925196"> <ul class="list-style-teaser" data-columnize="1"> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Bernard Badzioch. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/badzioch/_jcr_content/profileinfo.img.60.60.z.jpg/1561407701969.jpg" srcset="/content/shared/cas/math/faculty/badzioch/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407701969.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Bernard Badzioch. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/badzioch/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407701969.jpg" data-srcset="/content/shared/cas/math/faculty/badzioch/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407701969.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/badzioch.html"> <b> Bernard Badzioch <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Notre Dame </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 108 & 232 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8798 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:badzioch@buffalo.edu"> badzioch@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Homotopy Theory </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8798"> Call <span class="ada-hidden"> Bernard Badzioch </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:badzioch@buffalo.edu"> Email <span class="ada-hidden"> Bernard Badzioch </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/badzioch.html"> Profile <span class="ada-hidden"> for Bernard Badzioch </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 108 & 232 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8798 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:badzioch@buffalo.edu"> badzioch@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Gino Biondini. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/biondini/_jcr_content/profileinfo.img.60.60.z.jpg/1600442809023.jpg" srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Gino Biondini. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/biondini/jcr%3acontent/profileinfo.img.60.60.z.jpg/1600442809023.jpg" data-srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html"> <b> Gino Biondini <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Theoretical Physics, University of Perugia, Italy </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 226 & 324 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8810 </p> <p> Fax: (716) 645 5039 </p> <p> <a class="longtext" href="mailto:biondini@buffalo.edu"> biondini@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor & Department Chair </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Applied mathematics, nonlinear waves, solitons, integrable systems, inverse problems, applied probability, stochastic processes, optics. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8810"> Call <span class="ada-hidden"> Gino Biondini </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:biondini@buffalo.edu"> Email <span class="ada-hidden"> Gino Biondini </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html"> Profile <span class="ada-hidden"> for Gino Biondini </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 226 & 324 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8810 </p> <p> Fax: (716) 645 5039 </p> <p> <a class="longtext" href="mailto:biondini@buffalo.edu"> biondini@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Robert Busch. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/busch/_jcr_content/profileinfo.img.60.60.z.jpg/1591280352890.jpg" srcset="/content/shared/cas/math/faculty/busch/jcr:content/profileinfo.img.120.120.z.q65.jpg/1591280352890.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Robert Busch. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/busch/jcr%3acontent/profileinfo.img.60.60.z.jpg/1591280352890.jpg" data-srcset="/content/shared/cas/math/faculty/busch/jcr:content/profileinfo.img.120.120.z.q65.jpg/1591280352890.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/busch.html"> <b> Robert Busch <span> , </span> </b> <small> MA </small> </a> <div class="profileinfo-teaser-degree"> MA, University at Buffalo </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 102 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8760 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:rlbusch@buffalo.edu"> rlbusch@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Clinical Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8760"> Call <span class="ada-hidden"> Robert Busch </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:rlbusch@buffalo.edu"> Email <span class="ada-hidden"> Robert Busch </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/busch.html"> Profile <span class="ada-hidden"> for Robert Busch </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 102 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8760 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:rlbusch@buffalo.edu"> rlbusch@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/casper/_jcr_content/profileinfo.img.60.60.z.jpg/1561407766482.jpg" srcset="/content/shared/cas/math/faculty/casper/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407766482.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/casper/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407766482.jpg" data-srcset="/content/shared/cas/math/faculty/casper/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407766482.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/casper.html"> <b> Michael Casper <span> , </span> </b> <small> MA </small> </a> <div class="profileinfo-teaser-degree"> MA, University at Buffalo </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 222 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8779 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:mjcasper@buffalo.edu"> mjcasper@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Online Coordinator, Clinical Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8779"> Call <span class="ada-hidden"> Michael Casper </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:mjcasper@buffalo.edu"> Email <span class="ada-hidden"> Michael Casper </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/casper.html"> Profile <span class="ada-hidden"> for Michael Casper </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 222 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8779 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:mjcasper@buffalo.edu"> mjcasper@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Simone Cassani. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/cassani/_jcr_content/profileinfo.img.60.60.z.jpg/1598020383575.jpg" srcset="/content/shared/cas/math/faculty/cassani/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020383575.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Simone Cassani. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/cassani/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598020383575.jpg" data-srcset="/content/shared/cas/math/faculty/cassani/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020383575.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cassani.html"> <b> Simone Cassani <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Purdue University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 321 Mathematics Building </p> <p> University at Buffalo, North Campus </p> <p> Phone: (716) 645-8807 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:scassani@buffalo.edu"> scassani@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Visiting Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Applied Mathematics </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8807"> Call <span class="ada-hidden"> Simone Cassani </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:scassani@buffalo.edu"> Email <span class="ada-hidden"> Simone Cassani </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cassani.html"> Profile <span class="ada-hidden"> for Simone Cassani </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 321 Mathematics Building </p> <p> University at Buffalo, North Campus </p> <p> Phone: (716) 645-8807 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:scassani@buffalo.edu"> scassani@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Alexandr Chernyavskiy. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/chernyavskiy/_jcr_content/profileinfo.img.60.60.z.jpg/1636991957078.jpg" srcset="/content/shared/cas/math/faculty/chernyavskiy/jcr:content/profileinfo.img.120.120.z.q65.jpg/1636991957078.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Alexandr Chernyavskiy. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/chernyavskiy/jcr%3acontent/profileinfo.img.60.60.z.jpg/1636991957078.jpg" data-srcset="/content/shared/cas/math/faculty/chernyavskiy/jcr:content/profileinfo.img.120.120.z.q65.jpg/1636991957078.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/chernyavskiy.html"> <b> Alexandr Chernyavskiy <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Mathematics, McMaster University, Canada </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 328 Mathematics Building </p> <p> University at Buffalo, North Campus </p> <p> Phone: (716) 645-8814 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:chernyav@buffalo.edu"> chernyav@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Visiting Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Applied Mathematics, Mathematical Physics, Nonlinear Waves, Parity-Time Symmetry, Scientific Computing, Sum-of-squares Optimization </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8814"> Call <span class="ada-hidden"> Alexandr Chernyavskiy </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:chernyav@buffalo.edu"> Email <span class="ada-hidden"> Alexandr Chernyavskiy </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/chernyavskiy.html"> Profile <span class="ada-hidden"> for Alexandr Chernyavskiy </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 328 Mathematics Building </p> <p> University at Buffalo, North Campus </p> <p> Phone: (716) 645-8814 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:chernyav@buffalo.edu"> chernyav@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Alexandru Chirvasitu. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/chirvasitu/_jcr_content/profileinfo.img.60.60.z.jpg/1561407786118.jpg" srcset="/content/shared/cas/math/faculty/chirvasitu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407786118.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Alexandru Chirvasitu. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/chirvasitu/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407786118.jpg" data-srcset="/content/shared/cas/math/faculty/chirvasitu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407786118.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/chirvasitu.html"> <b> Alexandru Chirvasitu <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of California at Berkeley (2014) </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 216 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8831 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:achirvas@buffalo.edu"> achirvas@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Representation theory with a quantum group flavour </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8831"> Call <span class="ada-hidden"> Alexandru Chirvasitu </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:achirvas@buffalo.edu"> Email <span class="ada-hidden"> Alexandru Chirvasitu </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/chirvasitu.html"> Profile <span class="ada-hidden"> for Alexandru Chirvasitu </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 216 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8831 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:achirvas@buffalo.edu"> achirvas@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Ching Chou. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/ching-chou/_jcr_content/profileinfo.img.60.60.z.jpg/1561407803549.jpg" srcset="/content/shared/cas/math/faculty/ching-chou/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407803549.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Ching Chou. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/ching-chou/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407803549.jpg" data-srcset="/content/shared/cas/math/faculty/ching-chou/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407803549.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ching-chou.html"> <b> Ching Chou <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Rochester </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 320 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8806 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:chouc@buffalo.edu"> chouc@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research: </span> Functional analysis, invariant means </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8806"> Call <span class="ada-hidden"> Ching Chou </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:chouc@buffalo.edu"> Email <span class="ada-hidden"> Ching Chou </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ching-chou.html"> Profile <span class="ada-hidden"> for Ching Chou </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 320 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8806 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:chouc@buffalo.edu"> chouc@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Lewis A. Coburn. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/coburn/_jcr_content/profileinfo.img.60.60.z.jpg/1561407825832.jpg" srcset="/content/shared/cas/math/faculty/coburn/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407825832.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Lewis A. Coburn. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/coburn/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407825832.jpg" data-srcset="/content/shared/cas/math/faculty/coburn/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407825832.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/coburn.html"> <b> Lewis A. Coburn <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Michigan </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 327 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8813 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:lcoburn@buffalo.edu"> lcoburn@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Analysis, functional analysis </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8813"> Call <span class="ada-hidden"> Lewis A. Coburn </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:lcoburn@buffalo.edu"> Email <span class="ada-hidden"> Lewis A. Coburn </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/coburn.html"> Profile <span class="ada-hidden"> for Lewis A. Coburn </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 327 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8813 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:lcoburn@buffalo.edu"> lcoburn@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Michael Cowen. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/cowen/_jcr_content/profileinfo.img.60.60.z.jpg/1561407843600.jpg" srcset="/content/shared/cas/math/faculty/cowen/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407843600.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Michael Cowen. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/cowen/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407843600.jpg" data-srcset="/content/shared/cas/math/faculty/cowen/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407843600.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cowen.html"> <b> Michael Cowen <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Massachusetts Institute of Technology </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 317 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8803 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:cowen@buffalo.edu"> cowen@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Complex differential geometry </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8803"> Call <span class="ada-hidden"> Michael Cowen </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:cowen@buffalo.edu"> Email <span class="ada-hidden"> Michael Cowen </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cowen.html"> Profile <span class="ada-hidden"> for Michael Cowen </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 317 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8803 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:cowen@buffalo.edu"> cowen@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Thomas Cusick. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/cusick/_jcr_content/profileinfo.img.60.60.z.jpg/1561407860916.jpg" srcset="/content/shared/cas/math/faculty/cusick/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407860916.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Thomas Cusick. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/cusick/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407860916.jpg" data-srcset="/content/shared/cas/math/faculty/cusick/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407860916.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cusick.html"> <b> Thomas Cusick <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Cambridge University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 315 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8801 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:cusick@buffalo.edu"> cusick@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Cryptography, number theory, Diophantine approximation </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8801"> Call <span class="ada-hidden"> Thomas Cusick </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:cusick@buffalo.edu"> Email <span class="ada-hidden"> Thomas Cusick </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/cusick.html"> Profile <span class="ada-hidden"> for Thomas Cusick </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 315 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8801 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:cusick@buffalo.edu"> cusick@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/dimock/_jcr_content/profileinfo.img.60.60.z.jpg/1561407878271.jpg" srcset="/content/shared/cas/math/faculty/dimock/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407878271.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/dimock/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407878271.jpg" data-srcset="/content/shared/cas/math/faculty/dimock/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407878271.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/dimock.html"> <b> Jonathan Dimock <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Harvard University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 323 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8809 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:dimock@buffalo.edu"> dimock@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Mathematical physics, quantum field theory </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8809"> Call <span class="ada-hidden"> Jonathan Dimock </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:dimock@buffalo.edu"> Email <span class="ada-hidden"> Jonathan Dimock </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/dimock.html"> Profile <span class="ada-hidden"> for Jonathan Dimock </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 323 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8809 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:dimock@buffalo.edu"> dimock@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Sergey Dyachenko, PhD. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/dyachenko/_jcr_content/profileinfo.img.60.60.z.jpg/1603301854800.jpg" srcset="/content/shared/cas/math/faculty/dyachenko/jcr:content/profileinfo.img.120.120.z.q65.jpg/1603301854800.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Sergey Dyachenko, PhD. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/dyachenko/jcr%3acontent/profileinfo.img.60.60.z.jpg/1603301854800.jpg" data-srcset="/content/shared/cas/math/faculty/dyachenko/jcr:content/profileinfo.img.120.120.z.q65.jpg/1603301854800.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/dyachenko.html"> <b> Sergey Dyachenko <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Applied Mathematics, University of New Mexico </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 312 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8797 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:sergeydy@buffalo.edu"> sergeydy@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Applied mathematics, nonlinear waves, free surface wave, integrable systems, spectral methods, mathematical physics, scientific computing, mathematical biology, potenial theory </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8797"> Call <span class="ada-hidden"> Sergey Dyachenko </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:sergeydy@buffalo.edu"> Email <span class="ada-hidden"> Sergey Dyachenko </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/dyachenko.html"> Profile <span class="ada-hidden"> for Sergey Dyachenko </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 312 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8797 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:sergeydy@buffalo.edu"> sergeydy@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="James Faran. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/faran/_jcr_content/profileinfo.img.60.60.z.jpg/1561407893544.jpg" srcset="/content/shared/cas/math/faculty/faran/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407893544.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="James Faran. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/faran/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407893544.jpg" data-srcset="/content/shared/cas/math/faculty/faran/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407893544.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/faran.html"> <b> James Faran <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of California/Berkeley </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 215 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8776 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:jjfaran@buffalo.edu"> jjfaran@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Differential geometry, complex variables </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8776"> Call <span class="ada-hidden"> James Faran </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:jjfaran@buffalo.edu"> Email <span class="ada-hidden"> James Faran </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/faran.html"> Profile <span class="ada-hidden"> for James Faran </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 215 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8776 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:jjfaran@buffalo.edu"> jjfaran@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Brian Hassard. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/hassard/_jcr_content/profileinfo.img.60.60.z.jpg/1561407913709.jpg" srcset="/content/shared/cas/math/faculty/hassard/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407913709.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Brian Hassard. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hassard/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561407913709.jpg" data-srcset="/content/shared/cas/math/faculty/hassard/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561407913709.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hassard.html"> <b> Brian Hassard <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Cornell University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 322 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8808 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:hassard@buffalo.edu"> hassard@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Applied mathematics, bifurcation theory, precise numerical algorithms. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8808"> Call <span class="ada-hidden"> Brian Hassard </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:hassard@buffalo.edu"> Email <span class="ada-hidden"> Brian Hassard </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hassard.html"> Profile <span class="ada-hidden"> for Brian Hassard </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 322 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8808 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:hassard@buffalo.edu"> hassard@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Richard Hollister, PhD. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/hollister/_jcr_content/profileinfo.img.60.60.z.jpg/1598383126469.jpg" srcset="/content/shared/cas/math/faculty/hollister/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598383126469.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Richard Hollister, PhD. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hollister/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598383126469.jpg" data-srcset="/content/shared/cas/math/faculty/hollister/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598383126469.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hollister.html"> <b> Richard A. Hollister <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Western Michigan University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 326 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645- </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:rahollis@buffalo.edu"> rahollis@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Visiting Assistant Professor </div> <div class="profileinfo-teaser-school-title"> Virtual office hours: MWF 2:00 - 3:00 pm via Discord </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Linear algebra, matrix analysis, matrix theory, eigenvalue problems, inverse problems, numerical analysis, polynomial matrices, rational matrices. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-"> Call <span class="ada-hidden"> Richard A. Hollister </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:rahollis@buffalo.edu"> Email <span class="ada-hidden"> Richard A. Hollister </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hollister.html"> Profile <span class="ada-hidden"> for Richard A. Hollister </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 326 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645- </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:rahollis@buffalo.edu"> rahollis@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/hudson/_jcr_content/profileinfo.img.60.60.z.jpg/1631623889179.jpg" srcset="/content/shared/cas/math/faculty/hudson/jcr:content/profileinfo.img.120.120.z.q65.jpg/1631623889179.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hudson/jcr%3acontent/profileinfo.img.60.60.z.jpg/1631623889179.jpg" data-srcset="/content/shared/cas/math/faculty/hudson/jcr:content/profileinfo.img.120.120.z.q65.jpg/1631623889179.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hudson.html"> <b> Tara Hudson <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 201 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8769 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:tarahuds@buffalo.edu"> tarahuds@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Clinical Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Algebra, Representation Theory, Mathematics Education </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8769"> Call <span class="ada-hidden"> Tara Hudson </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:tarahuds@buffalo.edu"> Email <span class="ada-hidden"> Tara Hudson </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hudson.html"> Profile <span class="ada-hidden"> for Tara Hudson </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 201 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8769 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:tarahuds@buffalo.edu"> tarahuds@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Joseph Hundley. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/hundley/_jcr_content/profileinfo.img.60.60.z.jpg/1598020704382.jpg" srcset="/content/shared/cas/math/faculty/hundley/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020704382.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Joseph Hundley. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hundley/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598020704382.jpg" data-srcset="/content/shared/cas/math/faculty/hundley/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598020704382.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hundley.html"> <b> Joseph Hundley <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Columbia University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 203 & 232 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8771 & (716) 645-8784 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:jahundle@buffalo.edu"> jahundle@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Professor, Director of Undergraduate Studies </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Automorphic forms and L-functions </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8771%20&%20(716)%20645-8784"> Call <span class="ada-hidden"> Joseph Hundley </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:jahundle@buffalo.edu"> Email <span class="ada-hidden"> Joseph Hundley </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hundley.html"> Profile <span class="ada-hidden"> for Joseph Hundley </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 203 & 232 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8771 & (716) 645-8784 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:jahundle@buffalo.edu"> jahundle@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Modified since last publication"> <img alt="Kimberly E. Javor. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/kim-javor/_jcr_content/profileinfo.img.60.60.z.jpg/1598387339964.jpg" srcset="/content/shared/cas/math/faculty/kim-javor/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598387339964.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Modified since last publication"> <img alt="Kimberly E. Javor. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/kim-javor/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598387339964.jpg" data-srcset="/content/shared/cas/math/faculty/kim-javor/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598387339964.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kim-javor.html"> <b> Kimberly E. Javor </b> </a> <div class="profileinfo-teaser-degree"> MA, MS </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 101 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8826 & (716) 645-8125 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:kejavor@buffalo.edu"> kejavor@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Clinical Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8826%20&%20(716)%20645-8125"> Call <span class="ada-hidden"> Kimberly E. Javor </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:kejavor@buffalo.edu"> Email <span class="ada-hidden"> Kimberly E. Javor </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kim-javor.html"> Profile <span class="ada-hidden"> for Kimberly E. Javor </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 101 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8826 & (716) 645-8125 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:kejavor@buffalo.edu"> kejavor@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Prosenjit Kundu, PhD. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/kundu/_jcr_content/profileinfo.img.60.60.z.jpg/1629919954710.jpg" srcset="/content/shared/cas/math/faculty/kundu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1629919954710.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Prosenjit Kundu, PhD. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/kundu/jcr%3acontent/profileinfo.img.60.60.z.jpg/1629919954710.jpg" data-srcset="/content/shared/cas/math/faculty/kundu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1629919954710.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kundu.html"> <b> Prosenjit Kundu <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, National Institute of Technology Durgapur, India </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 305 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8804 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:pkundu@buffalo.edu"> pkundu@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Visiting Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Networks, Dynamics </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8804"> Call <span class="ada-hidden"> Prosenjit Kundu </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:pkundu@buffalo.edu"> Email <span class="ada-hidden"> Prosenjit Kundu </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kundu.html"> Profile <span class="ada-hidden"> for Prosenjit Kundu </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 305 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8804 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:pkundu@buffalo.edu"> pkundu@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Cagatay Kutluhan. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/kutluhan/_jcr_content/profileinfo.img.60.60.z.jpg/1615303692347.jpg" srcset="/content/shared/cas/math/faculty/kutluhan/jcr:content/profileinfo.img.120.120.z.q65.jpg/1615303692347.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Cagatay Kutluhan. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/kutluhan/jcr%3acontent/profileinfo.img.60.60.z.jpg/1615303692347.jpg" data-srcset="/content/shared/cas/math/faculty/kutluhan/jcr:content/profileinfo.img.120.120.z.q65.jpg/1615303692347.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kutluhan.html"> <b> Cagatay Kutluhan <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Michigan </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 117 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8768 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:kutluhan@buffalo.edu"> kutluhan@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Low-dimensional topology, contact and symplectic geometry, gauge theory. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8768"> Call <span class="ada-hidden"> Cagatay Kutluhan </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:kutluhan@buffalo.edu"> Email <span class="ada-hidden"> Cagatay Kutluhan </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kutluhan.html"> Profile <span class="ada-hidden"> for Cagatay Kutluhan </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 117 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8768 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:kutluhan@buffalo.edu"> kutluhan@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Hanfeng Li. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/hanfeng-li/_jcr_content/profileinfo.img.60.60.z.jpg/1604590848166.jpg" srcset="/content/shared/cas/math/faculty/hanfeng-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1604590848166.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Hanfeng Li. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hanfeng-li/jcr%3acontent/profileinfo.img.60.60.z.jpg/1604590848166.jpg" data-srcset="/content/shared/cas/math/faculty/hanfeng-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1604590848166.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hanfeng-li.html"> <b> Hanfeng Li <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of California at Berkeley </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 104 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8762 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:hfli@buffalo.edu"> hfli@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Operator algebras, noncommutative geometry, and dynamical systems. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8762"> Call <span class="ada-hidden"> Hanfeng Li </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:hfli@buffalo.edu"> Email <span class="ada-hidden"> Hanfeng Li </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hanfeng-li.html"> Profile <span class="ada-hidden"> for Hanfeng Li </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 104 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8762 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:hfli@buffalo.edu"> hfli@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Xiaoqing Li. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/xiaoqing-li/_jcr_content/profileinfo.img.60.60.z.jpg/1572912816471.jpg" srcset="/content/shared/cas/math/faculty/xiaoqing-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1572912816471.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Xiaoqing Li. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/xiaoqing-li/jcr%3acontent/profileinfo.img.60.60.z.jpg/1572912816471.jpg" data-srcset="/content/shared/cas/math/faculty/xiaoqing-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1572912816471.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/xiaoqing-li.html"> <b> Xiaoqing Li <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Rutgers University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 202 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8770 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:xl29@buffalo.edu"> xl29@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Number theory, automorphic forms and L-functions </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8770"> Call <span class="ada-hidden"> Xiaoqing Li </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:xl29@buffalo.edu"> Email <span class="ada-hidden"> Xiaoqing Li </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/xiaoqing-li.html"> Profile <span class="ada-hidden"> for Xiaoqing Li </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 202 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8770 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:xl29@buffalo.edu"> xl29@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Yiqiang Li. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/yiqiang-li/_jcr_content/profileinfo.img.60.60.z.jpg/1630610685359.jpg" srcset="/content/shared/cas/math/faculty/yiqiang-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1630610685359.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Yiqiang Li. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/yiqiang-li/jcr%3acontent/profileinfo.img.60.60.z.jpg/1630610685359.jpg" data-srcset="/content/shared/cas/math/faculty/yiqiang-li/jcr:content/profileinfo.img.120.120.z.q65.jpg/1630610685359.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/yiqiang-li.html"> <b> Yiqiang Li <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Kansas State University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 212 & 230 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8830 (Jenny Russell, 716-645-8782) </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:gsdmath@buffalo.edu"> gsdmath@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-title"> Director of Graduate Studies </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Geometric Representation Theory </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8830%20%20(Jenny%20Russell,%20716-645-8782)"> Call <span class="ada-hidden"> Yiqiang Li </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:gsdmath@buffalo.edu"> Email <span class="ada-hidden"> Yiqiang Li </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/yiqiang-li.html"> Profile <span class="ada-hidden"> for Yiqiang Li </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 212 & 230 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8830 (Jenny Russell, 716-645-8782) </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:gsdmath@buffalo.edu"> gsdmath@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Jonathan Lottes. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/lottes/_jcr_content/profileinfo.img.60.60.z.jpg/1629739948382.jpg" srcset="/content/shared/cas/math/faculty/lottes/jcr:content/profileinfo.img.120.120.z.q65.jpg/1629739948382.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Jonathan Lottes. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/lottes/jcr%3acontent/profileinfo.img.60.60.z.jpg/1629739948382.jpg" data-srcset="/content/shared/cas/math/faculty/lottes/jcr:content/profileinfo.img.120.120.z.q65.jpg/1629739948382.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/lottes.html"> <b> Jonathan Lottes <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University at Buffalo </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 211 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8775 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:jllottes@buffalo.edu"> jllottes@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Clinical Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> (forthcoming) </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8775"> Call <span class="ada-hidden"> Jonathan Lottes </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:jllottes@buffalo.edu"> Email <span class="ada-hidden"> Jonathan Lottes </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/lottes.html"> Profile <span class="ada-hidden"> for Jonathan Lottes </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 211 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8775 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:jllottes@buffalo.edu"> jllottes@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Johanna Mangahas. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/mangahas/_jcr_content/profileinfo.img.60.60.z.jpg/1561408120181.jpg" srcset="/content/shared/cas/math/faculty/mangahas/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408120181.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Johanna Mangahas. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/mangahas/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408120181.jpg" data-srcset="/content/shared/cas/math/faculty/mangahas/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408120181.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/mangahas.html"> <b> Johanna Mangahas <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Michigan </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 116 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8767 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:mangahas@buffalo.edu"> mangahas@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Geometric topology, geometric group theory. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8767"> Call <span class="ada-hidden"> Johanna Mangahas </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:mangahas@buffalo.edu"> Email <span class="ada-hidden"> Johanna Mangahas </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/mangahas.html"> Profile <span class="ada-hidden"> for Johanna Mangahas </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 116 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8767 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:mangahas@buffalo.edu"> mangahas@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/marino/_jcr_content/profileinfo.img.60.60.z.jpg/1635264087633.jpg" srcset="/content/shared/cas/math/faculty/marino/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635264087633.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/marino/jcr%3acontent/profileinfo.img.60.60.z.jpg/1635264087633.jpg" data-srcset="/content/shared/cas/math/faculty/marino/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635264087633.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/marino.html"> <b> Mark Marino <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 237 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8778 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:mrmarino@buffalo.edu"> mrmarino@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Lecturer </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> (forthcoming) </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8778"> Call <span class="ada-hidden"> Mark Marino </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:mrmarino@buffalo.edu"> Email <span class="ada-hidden"> Mark Marino </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/marino.html"> Profile <span class="ada-hidden"> for Mark Marino </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 237 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8778 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:mrmarino@buffalo.edu"> mrmarino@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Naoki Masuda. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/masuda/_jcr_content/profileinfo.img.60.60.z.jpg/1631623099792.jpg" srcset="/content/shared/cas/math/faculty/masuda/jcr:content/profileinfo.img.120.120.z.q65.jpg/1631623099792.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Naoki Masuda. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/masuda/jcr%3acontent/profileinfo.img.60.60.z.jpg/1631623099792.jpg" data-srcset="/content/shared/cas/math/faculty/masuda/jcr:content/profileinfo.img.120.120.z.q65.jpg/1631623099792.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/masuda.html"> <b> Naoki Masuda <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Tokyo </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 318 Mathematics Building </p> <p> University at Buffalo, North Campus </p> <p> Phone: (716) 645-8804 </p> <p> <a class="longtext" href="mailto:naokimas@buffalo.edu"> naokimas@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Applied Mathematics — Applied Probability and Statistics, Dynamical Systems, Stability and Bifurcation, Stochastic Processes. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8804"> Call <span class="ada-hidden"> Naoki Masuda </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:naokimas@buffalo.edu"> Email <span class="ada-hidden"> Naoki Masuda </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/masuda.html"> Profile <span class="ada-hidden"> for Naoki Masuda </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 318 Mathematics Building </p> <p> University at Buffalo, North Campus </p> <p> Phone: (716) 645-8804 </p> <p> <a class="longtext" href="mailto:naokimas@buffalo.edu"> naokimas@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="William W. Menasco. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/menasco/_jcr_content/profileinfo.img.60.60.z.jpg/1598021068832.jpg" srcset="/content/shared/cas/math/faculty/menasco/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598021068832.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="William W. Menasco. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/menasco/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598021068832.jpg" data-srcset="/content/shared/cas/math/faculty/menasco/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598021068832.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/menasco.html"> <b> William W. Menasco <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of California at Berkeley </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 112 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8765 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:menasco@buffalo.edu"> menasco@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Low-dimensional topology, hyperbolic geometry and 3-manifolds, knot theory, contact geometry, curve complex and mapping class group. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8765"> Call <span class="ada-hidden"> William W. Menasco </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:menasco@buffalo.edu"> Email <span class="ada-hidden"> William W. Menasco </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/menasco.html"> Profile <span class="ada-hidden"> for William W. Menasco </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 112 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8765 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:menasco@buffalo.edu"> menasco@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Sarah F. Muldoon. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/sarah-muldoon/_jcr_content/profileinfo.img.60.60.z.jpg/1599504046635.jpg" srcset="/content/shared/cas/math/faculty/sarah-muldoon/jcr:content/profileinfo.img.120.120.z.q65.jpg/1599504046635.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Sarah F. Muldoon. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/sarah-muldoon/jcr%3acontent/profileinfo.img.60.60.z.jpg/1599504046635.jpg" data-srcset="/content/shared/cas/math/faculty/sarah-muldoon/jcr:content/profileinfo.img.120.120.z.q65.jpg/1599504046635.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sarah-muldoon.html"> <b> Sarah F. Muldoon <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Michigan, Physics (2009) </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 208 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8774 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:smuldoon@buffalo.edu"> smuldoon@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Dr. Muldoon's group develops novel techniques and measures to investigate and quantify the role of network organization in brain function. This work is grounded in network theory, a field that draws upon tools from mathematics, physics, engineering, and computer science to understand, predict, and describe complex interactions in systems of connected elements. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8774"> Call <span class="ada-hidden"> Sarah F. Muldoon </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:smuldoon@buffalo.edu"> Email <span class="ada-hidden"> Sarah F. Muldoon </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sarah-muldoon.html"> Profile <span class="ada-hidden"> for Sarah F. Muldoon </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 208 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8774 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:smuldoon@buffalo.edu"> smuldoon@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Corey Placito. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/placito/_jcr_content/profileinfo.img.60.60.z.jpg/1635264031975.jpg" srcset="/content/shared/cas/math/faculty/placito/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635264031975.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Corey Placito. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/placito/jcr%3acontent/profileinfo.img.60.60.z.jpg/1635264031975.jpg" data-srcset="/content/shared/cas/math/faculty/placito/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635264031975.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/placito.html"> <b> Corey Placito <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 237 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8778 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:coreypla@buffalo.edu"> coreypla@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Lecturer </div> <div class="profileinfo-teaser-school-title"> Office hours: Tuesday/Thursday 3pm - 4pm </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Graph Theory </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8778"> Call <span class="ada-hidden"> Corey Placito </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:coreypla@buffalo.edu"> Email <span class="ada-hidden"> Corey Placito </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/placito.html"> Profile <span class="ada-hidden"> for Corey Placito </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 237 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8778 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:coreypla@buffalo.edu"> coreypla@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Barbara Prinari. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/prinari/_jcr_content/profileinfo.img.60.60.z.jpg/1561408185332.jpg" srcset="/content/shared/cas/math/faculty/prinari/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408185332.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Barbara Prinari. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/prinari/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408185332.jpg" data-srcset="/content/shared/cas/math/faculty/prinari/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408185332.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/prinari.html"> <b> Barbara Prinari <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD in Physics, University of Lecce, Italy </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 314 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8799 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:bprinari@buffalo.edu"> bprinari@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Combines analysis, applied mathematics, and concrete physical applications </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8799"> Call <span class="ada-hidden"> Barbara Prinari </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:bprinari@buffalo.edu"> Email <span class="ada-hidden"> Barbara Prinari </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/prinari.html"> Profile <span class="ada-hidden"> for Barbara Prinari </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 314 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8799 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:bprinari@buffalo.edu"> bprinari@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mohan Ramachandran. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/ramachandran/_jcr_content/profileinfo.img.60.60.z.jpg/1561408208301.jpg" srcset="/content/shared/cas/math/faculty/ramachandran/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408208301.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mohan Ramachandran. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/ramachandran/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408208301.jpg" data-srcset="/content/shared/cas/math/faculty/ramachandran/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408208301.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ramachandran.html"> <b> Mohan Ramachandran <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Illinois, Chicago, Algebraic geometry </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 204 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8772 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:ramac-m@buffalo.edu"> ramac-m@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Differential and complex geometry </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8772"> Call <span class="ada-hidden"> Mohan Ramachandran </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:ramac-m@buffalo.edu"> Email <span class="ada-hidden"> Mohan Ramachandran </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ramachandran.html"> Profile <span class="ada-hidden"> for Mohan Ramachandran </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 204 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8772 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:ramac-m@buffalo.edu"> ramac-m@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="John Ringland. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/ringland/_jcr_content/profileinfo.img.60.60.z.jpg/1635263747922.jpg" srcset="/content/shared/cas/math/faculty/ringland/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263747922.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="John Ringland. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/ringland/jcr%3acontent/profileinfo.img.60.60.z.jpg/1635263747922.jpg" data-srcset="/content/shared/cas/math/faculty/ringland/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263747922.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ringland.html"> <b> John Ringland <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Texas, Austin </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 206 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8773 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:ringland@buffalo.edu"> ringland@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Chair, Associate Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Applied mathematics, bifurcation theory, mathematical modeling, computational mathematics. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8773"> Call <span class="ada-hidden"> John Ringland </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:ringland@buffalo.edu"> Email <span class="ada-hidden"> John Ringland </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/ringland.html"> Profile <span class="ada-hidden"> for John Ringland </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 206 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8773 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:ringland@buffalo.edu"> ringland@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Michael A. Rosas. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/michael-rosas/_jcr_content/profileinfo.img.60.60.z.jpg/1566307923771.jpg" srcset="/content/shared/cas/math/faculty/michael-rosas/jcr:content/profileinfo.img.120.120.z.q65.jpg/1566307923771.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Michael A. Rosas. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/michael-rosas/jcr%3acontent/profileinfo.img.60.60.z.jpg/1566307923771.jpg" data-srcset="/content/shared/cas/math/faculty/michael-rosas/jcr:content/profileinfo.img.120.120.z.q65.jpg/1566307923771.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/michael-rosas.html"> <b> Michael A. Rosas <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University at Buffalo </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 217 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8777 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:marosas@buffalo.edu"> marosas@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Clinical Assistant Professor, Calculus Coordinator </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Representation theory; representation theory of symmetric groups; mathematics education. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8777"> Call <span class="ada-hidden"> Michael A. Rosas </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:marosas@buffalo.edu"> Email <span class="ada-hidden"> Michael A. Rosas </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/michael-rosas.html"> Profile <span class="ada-hidden"> for Michael A. Rosas </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 217 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8777 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:marosas@buffalo.edu"> marosas@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Gershon Sageev. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/sage/_jcr_content/profileinfo.img.60.60.z.jpg/1561408242607.jpg" srcset="/content/shared/cas/math/faculty/sage/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408242607.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Gershon Sageev. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/sage/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408242607.jpg" data-srcset="/content/shared/cas/math/faculty/sage/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408242607.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sage.html"> <b> Gershon Sageev <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Hebrew University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 310 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8789 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:gershons@buffalo.edu"> gershons@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Set theory-infinite combinatorics, models, forcing, applications </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8789"> Call <span class="ada-hidden"> Gershon Sageev </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:gershons@buffalo.edu"> Email <span class="ada-hidden"> Gershon Sageev </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sage.html"> Profile <span class="ada-hidden"> for Gershon Sageev </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 310 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8789 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:gershons@buffalo.edu"> gershons@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building, UB North Campus. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/samul/_jcr_content/profileinfo.img.60.60.z.jpg/1561408259514.jpg" srcset="/content/shared/cas/math/faculty/samul/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408259514.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building, UB North Campus. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/samul/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408259514.jpg" data-srcset="/content/shared/cas/math/faculty/samul/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408259514.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/samul.html"> <b> Angela Samul <span> , </span> </b> <small> EdM </small> </a> <div class="profileinfo-teaser-degree"> EdM, Mathematics Education, University at Buffalo (1993) </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 217 Baldy Hall, North Campus </p> <p> UB North Campus </p> <p> Phone: (716) 645-2394 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:asamul@buffalo.edu"> asamul@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Director of ULC, Clinical Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-2394"> Call <span class="ada-hidden"> Angela Samul </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:asamul@buffalo.edu"> Email <span class="ada-hidden"> Angela Samul </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/samul.html"> Profile <span class="ada-hidden"> for Angela Samul </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 217 Baldy Hall, North Campus </p> <p> UB North Campus </p> <p> Phone: (716) 645-2394 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:asamul@buffalo.edu"> asamul@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Adam S. Sikora. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/sikora/_jcr_content/profileinfo.img.60.60.z.jpg/1598021324715.jpg" srcset="/content/shared/cas/math/faculty/sikora/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598021324715.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Adam S. Sikora. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/sikora/jcr%3acontent/profileinfo.img.60.60.z.jpg/1598021324715.jpg" data-srcset="/content/shared/cas/math/faculty/sikora/jcr:content/profileinfo.img.120.120.z.q65.jpg/1598021324715.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sikora.html"> <b> Adam S. Sikora <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of Maryland, College Park </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 115 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-6362 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:asikora@buffalo.edu"> asikora@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Professor Sikora's main research areas are: Interactions between topology, algebra and number theory. Moduli spaces of representations, and their quantization. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-6362"> Call <span class="ada-hidden"> Adam S. Sikora </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:asikora@buffalo.edu"> Email <span class="ada-hidden"> Adam S. Sikora </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/sikora.html"> Profile <span class="ada-hidden"> for Adam S. Sikora </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 115 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-6362 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:asikora@buffalo.edu"> asikora@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Brian Spencer. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/spencer/_jcr_content/profileinfo.img.60.60.z.jpg/1561408293006.jpg" srcset="/content/shared/cas/math/faculty/spencer/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408293006.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Brian Spencer. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/spencer/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408293006.jpg" data-srcset="/content/shared/cas/math/faculty/spencer/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408293006.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/spencer.html"> <b> Brian Spencer <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Northwestern University </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 319 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8805 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:spencerb@buffalo.edu"> spencerb@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Applied mathematics, Mathematical Aspects of Materials Science materials modeling, free boundary problems, instabilities and microstructure formation. Current Research: Shape transitions in faceted quantum dots Liquid meniscus behavior during VLS nanowire growth </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8805"> Call <span class="ada-hidden"> Brian Spencer </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:spencerb@buffalo.edu"> Email <span class="ada-hidden"> Brian Spencer </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/spencer.html"> Profile <span class="ada-hidden"> for Brian Spencer </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 319 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8805 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:spencerb@buffalo.edu"> spencerb@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Kathlene Stephen, PhD. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/kathlene-stephen/_jcr_content/profileinfo.img.60.60.z.jpg/1635263983416.jpg" srcset="/content/shared/cas/math/faculty/kathlene-stephen/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263983416.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Kathlene Stephen, PhD. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/kathlene-stephen/jcr%3acontent/profileinfo.img.60.60.z.jpg/1635263983416.jpg" data-srcset="/content/shared/cas/math/faculty/kathlene-stephen/jcr:content/profileinfo.img.120.120.z.q65.jpg/1635263983416.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kathlene-stephen.html"> <b> Kathlene Stephen <span> , </span> </b> <small> MS </small> </a> <div class="profileinfo-teaser-degree"> MS, Mathematics, University at Buffalo </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 237 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8778; Cel/text, 716-406-8555 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:hockaday@buffalo.edu"> hockaday@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Lecturer </div> <div class="profileinfo-teaser-school-title"> Tuesday and Thursday from 10 -11 AM EST </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Intuitionistic Logic </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8778;%20%20Cel/text,%20716-406-8555"> Call <span class="ada-hidden"> Kathlene Stephen </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:hockaday@buffalo.edu"> Email <span class="ada-hidden"> Kathlene Stephen </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/kathlene-stephen.html"> Profile <span class="ada-hidden"> for Kathlene Stephen </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 237 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8778; Cel/text, 716-406-8555 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:hockaday@buffalo.edu"> hockaday@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Dane Taylor. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/Taylor/_jcr_content/profileinfo.img.60.60.z.jpg/1561408308912.jpg" srcset="/content/shared/cas/math/faculty/Taylor/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408308912.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Dane Taylor. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/Taylor/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408308912.jpg" data-srcset="/content/shared/cas/math/faculty/Taylor/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408308912.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/Taylor.html"> <b> Dane Taylor <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, Applied Mathematics, University of Colorado, Boulder </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 311 Mathematics Building </p> <p> UB, North Campus </p> <p> Phone: (716) 645-8796 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:danet@buffalo.edu"> danet@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Assistant Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Network-Data Analytics — methodology development for community detection, ranking systems, network inference, and manifold learning; Dynamics on and of Networks — nonlinear and stochastic systems including social contagions, oscillator synchronization, and network evolution. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8796"> Call <span class="ada-hidden"> Dane Taylor </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:danet@buffalo.edu"> Email <span class="ada-hidden"> Dane Taylor </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/Taylor.html"> Profile <span class="ada-hidden"> for Dane Taylor </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 311 Mathematics Building </p> <p> UB, North Campus </p> <p> Phone: (716) 645-8796 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:danet@buffalo.edu"> danet@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Jingbo Xia. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/jingbo-xia/_jcr_content/profileinfo.img.60.60.z.jpg/1561408343813.jpg" srcset="/content/shared/cas/math/faculty/jingbo-xia/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408343813.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Jingbo Xia. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/jingbo-xia/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408343813.jpg" data-srcset="/content/shared/cas/math/faculty/jingbo-xia/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408343813.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/jingbo-xia.html"> <b> Jingbo Xia <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, SUNY Stony Brook </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 306 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8788 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:jxia@buffalo.edu"> jxia@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Analysis </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8788"> Call <span class="ada-hidden"> Jingbo Xia </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:jxia@buffalo.edu"> Email <span class="ada-hidden"> Jingbo Xia </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/jingbo-xia.html"> Profile <span class="ada-hidden"> for Jingbo Xia </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 306 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8788 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:jxia@buffalo.edu"> jxia@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Xingru Zhang. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/xingru-zhang/_jcr_content/profileinfo.img.60.60.z.jpg/1561408367851.jpg" srcset="/content/shared/cas/math/faculty/xingru-zhang/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408367851.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Xingru Zhang. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/xingru-zhang/jcr%3acontent/profileinfo.img.60.60.z.jpg/1561408367851.jpg" data-srcset="/content/shared/cas/math/faculty/xingru-zhang/jcr:content/profileinfo.img.120.120.z.q65.jpg/1561408367851.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/xingru-zhang.html"> <b> Xingru Zhang <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of British Columbia </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 111 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8764 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:xinzhang@buffalo.edu"> xinzhang@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Topology and geometry of 3-dimensional manifolds, including knot theory. </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8764"> Call <span class="ada-hidden"> Xingru Zhang </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:xinzhang@buffalo.edu"> Email <span class="ada-hidden"> Xingru Zhang </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/xingru-zhang.html"> Profile <span class="ada-hidden"> for Xingru Zhang </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 111 Mathematics Building </p> <p> UB North Campus </p> <p> Phone: (716) 645-8764 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:xinzhang@buffalo.edu"> xinzhang@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> <li> <div> <div class="profileinfo-teaser"> <div class="profileinfo-teaser-photo"> <noscript> <picture contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building, UB North Campus. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/hj-zhu/_jcr_content/profileinfo.img.60.60.z.jpg/1563206568067.jpg" srcset="/content/shared/cas/math/faculty/hj-zhu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1563206568067.jpg 2x" width="60"/> </picture> </noscript> <picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"> <img alt="Mathematics Building, UB North Campus. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/hj-zhu/jcr%3acontent/profileinfo.img.60.60.z.jpg/1563206568067.jpg" data-srcset="/content/shared/cas/math/faculty/hj-zhu/jcr:content/profileinfo.img.120.120.z.q65.jpg/1563206568067.jpg 2x" height="60" width="60"/> </picture> <script> jQuery('picture.no-display').removeClass('no-display'); </script> </div> <div class="profileinfo-teaser-name"> <a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hj-zhu.html"> <b> Hui June Zhu <span> , </span> </b> <small> PhD </small> </a> <div class="profileinfo-teaser-degree"> PhD, University of California at Berkeley </div> </div> <div class="profileinfo-teaser-info"> <div class="profileinfo-teaser-contact hide-in-narrow"> <p> 325 Mathematics Building </p> <p> University at Buffalo, North Campus </p> <p> Phone: (716) 645-8811 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:hjzhu@buffalo.edu"> hjzhu@buffalo.edu </a> </p> </div> <div class="profileinfo-teaser-professional"> <div class="profileinfo-teaser-titles"> <div> <div class="profileinfo-teaser-school-title"> Associate Professor </div> <div class="profileinfo-teaser-school-name"> Department of Mathematics </div> </div> </div> <div class="profileinfo-teaser-interests"> <p> <span class="profileinfo-teaser-interests-title"> Research Interests: </span> Arithmetic Geometry and Number Theory </p> </div> </div> <div class="profileinfo-teaser-alt-contact"> <div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"> <a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8811"> Call <span class="ada-hidden"> Hui June Zhu </span> </a> <a class="profileinfo-teaser-btn-white" href="mailto:hjzhu@buffalo.edu"> Email <span class="ada-hidden"> Hui June Zhu </span> </a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/hj-zhu.html"> Profile <span class="ada-hidden"> for Hui June Zhu </span> </a> </div> <div class="profileinfo-teaser-3col-contact hide-in-narrow"> <p> 325 Mathematics Building </p> <p> University at Buffalo, North Campus </p> <p> Phone: (716) 645-8811 </p> <p> Fax: (716) 645-5039 </p> <p> <a class="longtext" href="mailto:hjzhu@buffalo.edu"> hjzhu@buffalo.edu </a> </p> </div> </div> </div> <div class="clearfix"> </div> </div> </div> </li> </ul> <div class="clear"> </div> </div> <div class="clearfix"> </div> <script> UBCMS.list.listlimit('ubcms\u002Dgen\u002D1925196', '100', '100'); </script> </div> <div class="calltoaction section"> <span class="teaser teaser-inline calltoaction-style-small"> <a href="#top"> <span class="teaser-inner"> <span class="teaser-title"> back to top </span> </span> </a> </span> </div> </div> <div class="mobile-content-bottom" data-set="content-bottom"> </div> <div class="mobile-center-or-right-bottom" data-set="center-or-right-bottom"> </div> <div class="mobile-center-bottom-or-right-top" data-set="mobile-center-bottom-or-right-top"> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <footer> <div class="footer inheritedreference reference parbase"> <div class="footerconfigpage contentpage page basicpage"> <div class="par parsys"> <div class="htmlsnippet section"> <div> <style type="text/css"> @only screen and (max-width: 720px){ .simplefooter .simplefootercontents > .copyright { clear: both; position: relative; top: 7px; } } </style> </div> </div> <div class="fatfooter section"> <div class="footer-mode-simple clearfix"> <a class="ub-logo-link" href="//www.buffalo.edu/"> <img alt="University at Buffalo The State University of New York - 175 Years: 1846-2021" class="ub-logo" src="/v-e541efb31faa2518c910054a542e1234/etc.clientlibs/wci/components/block/fatfooter/clientlibs/resources/ub-logo-175-years.png" width="400"/> </a> <div class="footer-columns footer-columns-1"> <div class="footer-column footer-column-1"> <div class="col1 parsys"> <div class="title section"> <h2 id="title-1" onpaste="onPasteFilterPlainText(event)"> <a href="/cas/math.html"> Department of Mathematics </a> </h2> </div> <div class="text parbase section"> <p> 244 Mathematics Building <br/> Buffalo, NY 14260-2900 <br/> Phone: (716) 645-6284 <br/> Fax: (716) 645-5039 </p> </div> <div class="reference parbase section"> <div class="unstructuredpage page basicpage"> <div class="par parsys"> <div class="hr hrline" style="clear:left"> </div> <div class="captiontext text parbase section"> <p> <b> About Our Photos and Videos: </b> Some photos or videos that appear on this site may have been taken prior to the COVID-19 pandemic and therefore may not accurately reflect current operations or adherence to <a href="https://www.buffalo.edu/coronavirus/health-and-safety.html" target="_blank"> UB’s Health and Safety Guidelines </a> . <br/> </p> </div> </div> </div> <div contenttreeid="reference-1" contenttreestatus="Not published" style="display:none;"> </div> </div> </div> </div> </div> <div class="copyright"> <span class="copy"> </span> <script> jQuery(".copyright .copy").html("© " + (new Date()).getFullYear()); </script> <a href="//www.buffalo.edu/"> University at Buffalo </a> . All rights reserved. | <a href="//www.buffalo.edu/administrative-services/policy1/ub-policy-lib/privacy.html"> Privacy </a> | <a href="//www.buffalo.edu/access/about-us/contact-us.html"> Accessibility </a> </div> </div> </div> <div class="htmlsnippet section"> <div> <!-- Global site tag (gtag.js) - Google Analytics --> <script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-127757988-27"> </script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-127757988-27'); </script> </div> </div> </div> </div> <div contenttreeid="footer" contenttreestatus="Not published" style="display:none;"> </div> </div> </footer> </body> </html>
len(faculty.find_all("div"))
955
faculty.find_all("a", href="//www.buffalo.edu")
[<a href="//www.buffalo.edu">UB Home</a>, <a href="//www.buffalo.edu"> <i class="icon icon-ub-logo"></i><span class="ada-hidden">University at Buffalo</span> <span class="logo"> <img alt="" class="black" height="20" src="/v-be9166b6b4a1ea7e5771e2eba1d410cf/etc.clientlibs/wci/components/block/header/clientlibs/resources/ub-logo-black.png" width="181"/> </span> </a>]
divs = faculty.find_all("div", class_='profileinfo-teaser')
divs[0]
<div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid="profileinfo" contenttreestatus="Not published"><img alt="Gino Biondini. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/biondini/_jcr_content/profileinfo.img.60.60.z.jpg/1600442809023.jpg" srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x" width="60"/></picture></noscript><picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"><img alt="Gino Biondini. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/biondini/jcr%3acontent/profileinfo.img.60.60.z.jpg/1600442809023.jpg" data-srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x" height="60" width="60"/></picture><script>jQuery('picture.no-display').removeClass('no-display');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html"> <b>Gino Biondini<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Theoretical Physics, University of Perugia, Italy</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>226 & 324 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8810</p><p>Fax: (716) 645 5039</p><p><a class="longtext" href="mailto:biondini@buffalo.edu">biondini@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor & Department Chair</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8810">Call<span class="ada-hidden"> Gino Biondini</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:biondini@buffalo.edu">Email<span class="ada-hidden"> Gino Biondini</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html">Profile<span class="ada-hidden"> for Gino Biondini</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>226 & 324 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8810</p><p>Fax: (716) 645 5039</p><p><a class="longtext" href="mailto:biondini@buffalo.edu">biondini@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div>
len(divs)
48
d = divs[0]
d
<div class="profileinfo-teaser"><div class="profileinfo-teaser-photo"><noscript><picture contenttreeid="profileinfo" contenttreestatus="Not published"><img alt="Gino Biondini. " class="img-60 img-60x60 cq-dd-image" height="60" src="/content/shared/cas/math/faculty/biondini/_jcr_content/profileinfo.img.60.60.z.jpg/1600442809023.jpg" srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x" width="60"/></picture></noscript><picture class="no-display" contenttreeid="profileinfo" contenttreestatus="Not published"><img alt="Gino Biondini. " class="img-60 img-60x60 cq-dd-image lazyload" data-src="/content/shared/cas/math/faculty/biondini/jcr%3acontent/profileinfo.img.60.60.z.jpg/1600442809023.jpg" data-srcset="/content/shared/cas/math/faculty/biondini/jcr:content/profileinfo.img.120.120.z.q65.jpg/1600442809023.jpg 2x" height="60" width="60"/></picture><script>jQuery('picture.no-display').removeClass('no-display');</script></div><div class="profileinfo-teaser-name"><a class="title" href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html"> <b>Gino Biondini<span>,</span></b><small> PhD</small> </a><div class="profileinfo-teaser-degree">PhD, Theoretical Physics, University of Perugia, Italy</div></div><div class="profileinfo-teaser-info"><div class="profileinfo-teaser-contact hide-in-narrow"><p>226 & 324 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8810</p><p>Fax: (716) 645 5039</p><p><a class="longtext" href="mailto:biondini@buffalo.edu">biondini@buffalo.edu</a></p></div><div class="profileinfo-teaser-professional"><div class="profileinfo-teaser-titles"><div><div class="profileinfo-teaser-school-title">Professor & Department Chair</div><div class="profileinfo-teaser-school-name">Department of Mathematics</div></div></div></div><div class="profileinfo-teaser-alt-contact"><div class="profileinfo-teaser-mobile-contact hide-in-wide buttoncomponent green"><a class="profileinfo-teaser-btn-white" href="tel:(716)%20645-8810">Call<span class="ada-hidden"> Gino Biondini</span></a> <a class="profileinfo-teaser-btn-white" href="mailto:biondini@buffalo.edu">Email<span class="ada-hidden"> Gino Biondini</span></a> <a href="/cas/math/people/faculty.host.html/content/shared/cas/math/faculty/biondini.html">Profile<span class="ada-hidden"> for Gino Biondini</span></a></div><div class="profileinfo-teaser-3col-contact hide-in-narrow"><p>226 & 324 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8810</p><p>Fax: (716) 645 5039</p><p><a class="longtext" href="mailto:biondini@buffalo.edu">biondini@buffalo.edu</a></p></div></div></div><div class="clearfix"></div></div>
d.find('b').get_text()[:-1]
'Gino Biondini'
contact = d.find("div", class_="profileinfo-teaser-contact hide-in-narrow")
contact
<div class="profileinfo-teaser-contact hide-in-narrow"><p>226 & 324 Mathematics Building</p><p>UB North Campus</p><p>Phone: (716) 645-8810</p><p>Fax: (716) 645 5039</p><p><a class="longtext" href="mailto:biondini@buffalo.edu">biondini@buffalo.edu</a></p></div>
[p.get_text() for p in contact.find_all('p')]
['226 & 324 Mathematics Building', 'UB North Campus', 'Phone: (716) 645-8810', 'Fax: (716) 645 5039', 'biondini@buffalo.edu']
for d in divs:
print(d.find('b').get_text()[:-1])
contact = d.find("div", class_="profileinfo-teaser-contact hide-in-narrow")
contact = [p.get_text() for p in contact.find_all('p')]
for c in contact:
print(c)
print("\n")
Gino Biondini 226 & 324 Mathematics Building UB North Campus Phone: (716) 645-8810 Fax: (716) 645 5039 biondini@buffalo.edu John Ringland 206 Mathematics Building UB North Campus Phone: (716) 645-8773 Fax: (716) 645-5039 ringland@buffalo.edu Joseph Hundley 203 & 232 Mathematics Building UB North Campus Phone: (716) 645-8771 & (716) 645-8784 Fax: (716) 645-5039 jahundle@buffalo.edu Yiqiang Li 212 & 230 Mathematics Building UB North Campus Phone: (716) 645-8830 (Jenny Russell, 716-645-8782) Fax: (716) 645-5039 gsdmath@buffalo.edu Bernard Badzioch 108 & 232 Mathematics Building UB North Campus Phone: (716) 645-8798 Fax: (716) 645-5039 badzioch@buffalo.edu Gino Biondini 226 & 324 Mathematics Building UB North Campus Phone: (716) 645-8810 Fax: (716) 645 5039 biondini@buffalo.edu Robert Busch 102 Mathematics Building UB North Campus Phone: (716) 645-8760 Fax: (716) 645-5039 rlbusch@buffalo.edu Michael Casper 222 Mathematics Building UB North Campus Phone: (716) 645-8779 Fax: (716) 645-5039 mjcasper@buffalo.edu Simone Cassani 321 Mathematics Building University at Buffalo, North Campus Phone: (716) 645-8807 Fax: (716) 645-5039 scassani@buffalo.edu Alexandr Chernyavskiy 328 Mathematics Building University at Buffalo, North Campus Phone: (716) 645-8814 Fax: (716) 645-5039 chernyav@buffalo.edu Alexandru Chirvasitu 216 Mathematics Building UB North Campus Phone: (716) 645-8831 Fax: (716) 645-5039 achirvas@buffalo.edu Ching Chou 320 Mathematics Building UB North Campus Phone: (716) 645-8806 Fax: (716) 645-5039 chouc@buffalo.edu Lewis A. Coburn 327 Mathematics Building UB North Campus Phone: (716) 645-8813 Fax: (716) 645-5039 lcoburn@buffalo.edu Michael Cowen 317 Mathematics Building UB North Campus Phone: (716) 645-8803 Fax: (716) 645-5039 cowen@buffalo.edu Thomas Cusick 315 Mathematics Building UB North Campus Phone: (716) 645-8801 Fax: (716) 645-5039 cusick@buffalo.edu Jonathan Dimock 323 Mathematics Building UB North Campus Phone: (716) 645-8809 Fax: (716) 645-5039 dimock@buffalo.edu Sergey Dyachenko 312 Mathematics Building UB North Campus Phone: (716) 645-8797 Fax: (716) 645-5039 sergeydy@buffalo.edu James Faran 215 Mathematics Building UB North Campus Phone: (716) 645-8776 Fax: (716) 645-5039 jjfaran@buffalo.edu Brian Hassard 322 Mathematics Building UB North Campus Phone: (716) 645-8808 Fax: (716) 645-5039 hassard@buffalo.edu Richard A. Hollister 326 Mathematics Building UB North Campus Phone: (716) 645- Fax: (716) 645-5039 rahollis@buffalo.edu Tara Hudson 201 Mathematics Building UB North Campus Phone: (716) 645-8769 Fax: (716) 645-5039 tarahuds@buffalo.edu Joseph Hundley 203 & 232 Mathematics Building UB North Campus Phone: (716) 645-8771 & (716) 645-8784 Fax: (716) 645-5039 jahundle@buffalo.edu Kimberly E. Javo 101 Mathematics Building UB North Campus Phone: (716) 645-8826 & (716) 645-8125 Fax: (716) 645-5039 kejavor@buffalo.edu Prosenjit Kundu 305 Mathematics Building UB North Campus Phone: (716) 645-8804 Fax: (716) 645-5039 pkundu@buffalo.edu Cagatay Kutluhan 117 Mathematics Building UB North Campus Phone: (716) 645-8768 Fax: (716) 645-5039 kutluhan@buffalo.edu Hanfeng Li 104 Mathematics Building UB North Campus Phone: (716) 645-8762 Fax: (716) 645-5039 hfli@buffalo.edu Xiaoqing Li 202 Mathematics Building UB North Campus Phone: (716) 645-8770 Fax: (716) 645-5039 xl29@buffalo.edu Yiqiang Li 212 & 230 Mathematics Building UB North Campus Phone: (716) 645-8830 (Jenny Russell, 716-645-8782) Fax: (716) 645-5039 gsdmath@buffalo.edu Jonathan Lottes 211 Mathematics Building UB North Campus Phone: (716) 645-8775 Fax: (716) 645-5039 jllottes@buffalo.edu Johanna Mangahas 116 Mathematics Building UB North Campus Phone: (716) 645-8767 Fax: (716) 645-5039 mangahas@buffalo.edu Mark Marino 237 Mathematics Building UB North Campus Phone: (716) 645-8778 Fax: (716) 645-5039 mrmarino@buffalo.edu Naoki Masuda 318 Mathematics Building University at Buffalo, North Campus Phone: (716) 645-8804 naokimas@buffalo.edu William W. Menasco 112 Mathematics Building UB North Campus Phone: (716) 645-8765 Fax: (716) 645-5039 menasco@buffalo.edu Sarah F. Muldoon 208 Mathematics Building UB North Campus Phone: (716) 645-8774 Fax: (716) 645-5039 smuldoon@buffalo.edu Corey Placito 237 Mathematics Building UB North Campus Phone: (716) 645-8778 Fax: (716) 645-5039 coreypla@buffalo.edu Barbara Prinari 314 Mathematics Building UB North Campus Phone: (716) 645-8799 Fax: (716) 645-5039 bprinari@buffalo.edu Mohan Ramachandran 204 Mathematics Building UB North Campus Phone: (716) 645-8772 Fax: (716) 645-5039 ramac-m@buffalo.edu John Ringland 206 Mathematics Building UB North Campus Phone: (716) 645-8773 Fax: (716) 645-5039 ringland@buffalo.edu Michael A. Rosas 217 Mathematics Building UB North Campus Phone: (716) 645-8777 Fax: (716) 645-5039 marosas@buffalo.edu Gershon Sageev 310 Mathematics Building UB North Campus Phone: (716) 645-8789 Fax: (716) 645-5039 gershons@buffalo.edu Angela Samul 217 Baldy Hall, North Campus UB North Campus Phone: (716) 645-2394 Fax: (716) 645-5039 asamul@buffalo.edu Adam S. Sikora 115 Mathematics Building UB North Campus Phone: (716) 645-6362 Fax: (716) 645-5039 asikora@buffalo.edu Brian Spencer 319 Mathematics Building UB North Campus Phone: (716) 645-8805 Fax: (716) 645-5039 spencerb@buffalo.edu Kathlene Stephen 237 Mathematics Building UB North Campus Phone: (716) 645-8778; Cel/text, 716-406-8555 Fax: (716) 645-5039 hockaday@buffalo.edu Dane Taylor 311 Mathematics Building UB, North Campus Phone: (716) 645-8796 Fax: (716) 645-5039 danet@buffalo.edu Jingbo Xia 306 Mathematics Building UB North Campus Phone: (716) 645-8788 Fax: (716) 645-5039 jxia@buffalo.edu Xingru Zhang 111 Mathematics Building UB North Campus Phone: (716) 645-8764 Fax: (716) 645-5039 xinzhang@buffalo.edu Hui June Zhu 325 Mathematics Building University at Buffalo, North Campus Phone: (716) 645-8811 Fax: (716) 645-5039 hjzhu@buffalo.edu