-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathU07.py
executable file
·57 lines (44 loc) · 1.46 KB
/
U07.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/python
# encoding=utf-8
import numpy as np
import matplotlib
matplotlib.use("gtkagg")
import matplotlib.pyplot as plt
"""Übung 07 Algebra mit numpy"""
#Markus Klemm WS12/13 Phy-BA
#Gegeben:
(x1,y1) = (-1.5,10.975)
(x2,y2) = (-0.4,13.008)
(x3,y3) = (1.9,0.843)
###
poly = np.poly1d(np.polyfit(np.array([x1,x2,x3]),np.array([y1,y2,y3]),2))
print "Berechnungen mit Polynom: " + str(poly) #1.
print "Nullstellen: " + str(poly.r) #2.
def LokaleExtrema(polynom):
"""Gibt die Koordinaten der lokalen Extrema des übergebenen Polynoms aus"""
poly1 = np.polyder(polynom,1)
poly2 = np.polyder(polynom,2)
roots = poly1.r
print roots
for root in roots:
if (poly2(root) <0):
print "Lokales Maximum: " + str(root) + ";" + str(poly(root))
elif (poly2(root) >0):
print "Lokales Minimum: " + str(root) + ";" + str(poly(root))
else:
#! hmm …
break
def Tangente(polynom,forx,x):
"""Gibt die y-Werte der Tangente für x, welche den gegebenen Polynom an der Stelle
forx schneidet, zurück."""
poly1 = np.polyder(polynom,1)
m = poly1(forx)
y = polynom(forx)
n = -m*forx + y
return x*m + n
LokaleExtrema(poly) #3.
plt.plot(np.linspace(-20,20),poly(np.linspace(-20,20)))#1
assert (Tangente(poly,42,42) == poly(42))
plt.plot(np.linspace(-20,20),Tangente(poly,1,np.linspace(-20,20)))#Zusatz
plt.show()
#! Schön! Ordentlich formatiert, dokumentiert, perfekte Abgabe (+1.0)