HM1_Aufgabenserie3/Schenk_Brandenberger_S3_Auf...

70 lines
1.6 KiB
Python
Raw Permalink Normal View History

2022-10-20 14:27:15 +02:00
import numpy as np
import matplotlib.pyplot as plt
import math
2022-10-20 15:21:02 +02:00
def h1(x):
2022-10-20 15:50:45 +02:00
try:
return math.sqrt(100 * math.pow(x, 2) - 200 * x + 99)
except:
return
2022-10-20 19:44:05 +02:00
def h2(x):
return math.sqrt((10 * x - 9) * (10 * x - 11))
2022-10-20 15:30:45 +02:00
def h1_diff(x):
2022-10-20 16:28:04 +02:00
try:
return (100 * x - 100) / math.sqrt(100 * math.pow(x, 2) - 200 * x + 99)
except:
return
2022-10-20 16:22:11 +02:00
def h2_diff(x):
2022-10-20 16:03:19 +02:00
return (100 * x - 100) / math.sqrt((10*x-11)*(10*x-9))
2022-10-20 15:50:45 +02:00
2022-10-20 19:44:05 +02:00
def kondnumb1(x):
2022-10-20 16:28:04 +02:00
try:
return (np.abs(h1_diff(x)) * np.abs(x)) / np.abs(h1(x))
except:
return
2022-10-20 15:50:45 +02:00
2022-10-20 16:25:00 +02:00
def kondnumb2(x):
return (np.abs(h2_diff(x)) * np.abs(x)) / np.abs(h2(x))
2022-10-20 15:50:45 +02:00
xStep = math.pow(10, -7)
xStart = 1.1
xStop = 1.31
2022-10-20 14:44:10 +02:00
2022-10-20 15:50:45 +02:00
x = np.arange(xStart, xStop + xStep, xStep)
2022-10-20 19:44:05 +02:00
yh1 = [h1(x_val) for x_val in x]
yh2 = [h2(x_val) for x_val in x]
ykondnumb1 = [kondnumb1(x_val) for x_val in x]
ykondnumb2 = [kondnumb2(x_val) for x_val in x]
# Aufgabe 4a)
plt.plot(x, yh1, label='h1(x)')
plt.plot(x, yh2, label='h2(x)')
plt.title("h(x) für Aufgabe 4a")
plt.legend()
plt.figure()
# Da die Operation nicht gut konditioniert ist, erhält man für den Ausdruck inder Wurzel
# bei x = 1.1, -1.4e-14 => ein kleiner Rundungsfehler
# Somit kann die Wurzel für diesen x Werte nicht berechnet werden.
2022-10-20 14:44:10 +02:00
2022-10-20 15:50:45 +02:00
2022-10-20 19:44:05 +02:00
# Aufgabe 4b)
plt.plot(x, ykondnumb1, label='Konditionszahl')
plt.plot(x, ykondnumb2, label='Konditionszahl nach Umformung')
2022-10-20 16:25:00 +02:00
plt.yscale('log', base=10)
2022-10-20 19:44:05 +02:00
plt.title('Aufgabe 4b)')
2022-10-20 15:50:45 +02:00
plt.legend()
plt.figure()
2022-10-20 19:44:05 +02:00
# Aufgabe 4c)
# Die umgeformte Algebraisch umgeformte Funktion h2 ist besser konditioniert.
# Für den Audruck in der Wurzel wird genau 0.0 berechnet (bei x = 1.1).
# Es entstehen keine Rundungsfehler mehr.
2022-10-20 15:50:45 +02:00
2022-10-20 14:44:10 +02:00
plt.show()
2022-10-20 15:21:02 +02:00
2022-10-20 16:25:00 +02:00