|
This is a file from the Wikimedia Commons. Information from its description page there is shown below. Commons is a freely licensed media file repository. You can help.
|
Summary
Description |
English: The plot of hyperbola xy=1 and the area under the curve (integral).Created using python.
from matplotlib.pyplot import *
from numpy import linspace, arange
from matplotlib.patches import Polygon
x1 = linspace(0,9,100)
y1 = 1./x1
x2 = linspace(1,8,8)
y2 = 1./x2
x3 = arange(1,6,0.01)
y3 = 1./x3
verts = [(1.,0)] + zip(x3,y3) + [(6,0)]
poly = Polygon(verts, facecolor='orange',edgecolor='k')
fig = figure(figsize=(5,5))
ax = fig.add_subplot(111)
ax.grid(True)
ax.plot(x1,y1)
ax.plot(x2,y2,'ro')
ax.add_patch(poly)
ax.text(1,1,r"$f(x)=\frac{1}{x}$")
ax.text(2,.15,r"$\int_1^6f(x)\mathrm{d}x$")
ax.set_ylim(0,1.2)
ax.set_yticks(linspace(0,1,6))
ax.minorticks_on()
ax.set_xlabel("x")
ax.set_ylabel("y")
fig.savefig("1_over_x_integral.svg",bbox_inches="tight",\
pad_inches=.15)
|
Date |
5 June 2011 |
Source |
Own work |
Author |
Krishnavedala |
✓ The source code of this SVG is valid.
Licensing
I, the copyright holder of this work, hereby publish it under the following licenses:
|
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue
|
You may select the license of your choice.
|
File usage
The following pages on Schools Wikipedia link to this image (list may be incomplete):
This file contains additional information, probably added from the digital camera or scanner used to create or digitize it. If the file has been modified from its original state, some details may not fully reflect the modified file.
SOS Children's Villages chose the best bits of Wikipedia to help you learn. SOS Children helps those who have nothing and no one, giving them back the famly they have lost and bringing them the very best opportunities for a happy, healthy future. Have you thought about sponsoring a child?