File:Goursat problem.svg

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search
Original file (SVG file, nominally 480 × 480 pixels, file size: 13 KB)

Summary

Description
English:

Matplotlib

# goursat_triangle_diagram.py
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.patches import Polygon

fig, ax = plt.subplots(figsize=(5, 5))

# Axes and limits
ax.set_xlim(-0.05, 1.05)
ax.set_ylim(-0.05, 1.05)
ax.set_aspect('equal', adjustable='box')
ax.set_xlabel(r'$x

) ax.set_ylabel(r'$y
)
  1. Domain Omega (closure for illustration): triangle with vertices (0,1)-(1,1)-(0,0)

tri = np.array([[0, 1], [1, 1], [0, 0]]) patch = Polygon(tri, closed=True, facecolor='0.92', edgecolor='black', linewidth=1.5) ax.add_patch(patch)

  1. Characteristic line y = x

ax.plot([0, 1], [0, 1], linestyle='--', color='black', linewidth=1)

  1. Side labels for boundary data
ax.annotate(r'$\phi(t)
Source Own work Edit this at Structured Data on Commons
Author

, xy=(0, 0.5), xytext=(-0.12, 0.8),

           ha='right', va='center', rotation=90)

ax.annotate(r'$\psi(t)}}, xy=(0.5, 1), xytext=(0.5, 1.08),

           ha='center', va='bottom')
  1. Parameter guides

ax.annotate(r'$t\in[0,1]}}, xy=(0, 0.15), xytext=(-0.18, 0.15),

           ha='right', va='center', rotation=90)

ax.annotate(r'$t\in[0,1]}}, xy=(0.15, 1), xytext=(0.15, 1.08),

           ha='center', va='bottom')
  1. Label the domain

ax.text(0.25, 0.75, r'$\Omega:\ 0<x<y<1}}, ha='center', va='center')

  1. Ticks and frame

ax.set_xticks([0, 1]) ax.set_yticks([0, 1]) ax.set_xticklabels(['0', '1']) ax.set_yticklabels(['0', '1']) ax.spines'right', 'top'.set_visible(False)

plt.tight_layout() plt.savefig('Goursat problem.svg') plt.show() }}}} |date=2025-09-29 |source=Own work |author=Cosmia Nebula }}

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current17:56, 29 September 2025No thumbnail480 × 480 (13 KB)wikimediacommons>Cosmia NebulaUploaded while editing "Goursat problem" on en.wikipedia.org

The following page uses this file:

Metadata