File:Visualization of epsilon-delta-continuity 2.svg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(SVG file, nominally 720 × 540 pixels, file size: 16 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary[edit]

Description
English: Visualization of the epsilon-delta-continuity with the function and the point . The 2epsilon-2delta-rectangle is drawn with and .
Date
Source Own work
Author Stephan Kulla (User:Stephan Kulla)
Other versions
SVG development
InfoField
 
The SVG code is valid.
 
This plot was created with Matplotlib.
Source code
InfoField

Python code

from matplotlib.patches import Rectangle

import matplotlib.pyplot as plt
import numpy as np

def create_plot(f, xs, x0, eps, delta, filename):
    ys = f(xs)
    y0 = f(x0)

    xmin = xs.min()
    ymin = ys.min()

    xss = xs[(xs > x0-delta) & (xs < x0+delta)]
    yss = f(xss)

    sg = (yss > y0-eps) & (yss < y0+eps)

    fig, ax = plt.subplots(1,1)

    ax.add_patch(
        Rectangle((x0-delta,y0-eps), 2*delta, 2*eps, edgecolor="black",
                  alpha=0.6, linestyle="solid", facecolor="#dddddd", lw=1.5))
    ax.plot(xs, ys)

    yss[~sg] = None
    ax.plot(xss, yss, color="green", lw=2)

    yss = f(xss)
    yss[sg] = None
    ax.plot(xss, yss, color="red", lw=2)

    ax.plot([x0], [y0], "o", color="black")

    fig.savefig(filename)

xs = np.linspace(-2, 4, 1e5)

create_plot(lambda x: x/3.0, xs, 1, 1, 2, "Visualization of epsilon-delta-continuity 1.svg")
create_plot(lambda x: x/3.0, xs, 1, 0.5, 1, "Visualization of epsilon-delta-continuity 2.svg")
create_plot(lambda x: x/3.0, xs, 1, 1./3, 3./4, "Visualization of epsilon-delta-continuity 3.svg")
create_plot(lambda x: x/3.0, xs, 1, 0.5, 2, "Visualization of epsilon-delta-continuity 4.svg")

Licensing[edit]

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

File history

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

Date/TimeThumbnailDimensionsUserComment
current23:48, 13 February 2017Thumbnail for version as of 23:48, 13 February 2017720 × 540 (16 KB)Stephan Kulla (talk | contribs)User created page with UploadWizard

File usage on other wikis

Metadata