Spaces:
Running
Running
File size: 2,146 Bytes
06e4298 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Partial Differential Equations - Mathematics Processes</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f5f5f5; padding: 20px; }
.container { max-width: 800px; margin: 0 auto; background: white; border-radius: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 30px; }
h1 { color: #2980b9; margin-bottom: 15px; }
.nav-links { margin-bottom: 25px; }
.nav-links a { color: #2980b9; text-decoration: none; margin-right: 20px; font-weight: 500; }
.nav-links a:hover { text-decoration: underline; }
.chart-list { list-style: none; }
.chart-list li { margin-bottom: 12px; }
.chart-list a { display: block; padding: 15px 20px; background: #f8f9fa; border-radius: 8px; color: #2c3e50; text-decoration: none; border-left: 4px solid #2980b9; transition: all 0.2s; }
.chart-list a:hover { background: #ecf0f1; }
</style>
</head>
<body>
<div class="container">
<div class="nav-links">
<a href="../../mathematics_index.html">← Back to Mathematics Index</a>
<a href="https://arxiv.org/list/math.AP/recent" target="_blank">arXiv math.AP</a>
</div>
<h1>Partial Differential Equations</h1>
<p style="color:#666;margin-bottom:25px;">Dependency graphs for PDE theory: classical equations, well-posedness, Sobolev spaces, and maximum principles.</p>
<ul class="chart-list">
<li><a href="partial_differential_equations-classical.html">Classical PDEs (Laplace, heat, wave)</a></li>
<li><a href="partial_differential_equations-wellposed.html">Well-Posedness</a></li>
<li><a href="partial_differential_equations-sobolev.html">Sobolev Spaces and Weak Solutions</a></li>
<li><a href="partial_differential_equations-maximum.html">Maximum Principles</a></li>
</ul>
</div>
</body>
</html>
|