Hallo, wie zieht man unter python eigentlich die n-te wurzel aus einer zahl? Vielen Dank. -- Benjamin Kaminski mailto:bekaminski@gmail.com mailto:benjamin@kernteamer.de _________________________________________________________________________ Mit der Gruppen-SMS von WEB.DE FreeMail können Sie eine SMS an alle Freunde gleichzeitig schicken: http://freemail.web.de/features/?mc=021179 _______________________________________________ python-de maillist - python-de@python.net http://python.net/mailman/listinfo/python-de
Am Donnerstag, 30. Juni 2005 14:38 schrieb Benjamin Kaminski:
Hallo, wie zieht man unter python eigentlich die n-te wurzel aus einer zahl? hoch (**) 1/n, also für die 5te Wurzel aus 32: 32**(1/5) .. dachte ich, funktioniert nicht, da 1/5 ergibt 1. Also ist richtig:
32**(1/5.0)
Vielen Dank.
gruß maximilian _______________________________________________ python-de maillist - python-de@python.net http://python.net/mailman/listinfo/python-de
max wrote:
Am Donnerstag, 30. Juni 2005 14:38 schrieb Benjamin Kaminski:
Hallo, wie zieht man unter python eigentlich die n-te wurzel aus einer zahl? hoch (**) 1/n, also für die 5te Wurzel aus 32: 32**(1/5) .. dachte ich, funktioniert nicht, da 1/5 ergibt 1. Also ist richtig:
32**(1/5.0)
import math math.sqrt(n) -schorsch -- Georg Mischler -- simulations developer -- schorsch at schorsch com +schorsch.com+ -- lighting design tools -- http://www.schorsch.com/ _______________________________________________ python-de maillist - python-de@python.net http://python.net/mailman/listinfo/python-de
On, Thu Jun 30, 2005, Georg Mischler wrote:
max wrote:
Am Donnerstag, 30. Juni 2005 14:38 schrieb Benjamin Kaminski:
Hallo, wie zieht man unter python eigentlich die n-te wurzel aus einer zahl? hoch (**) 1/n, also für die 5te Wurzel aus 32: 32**(1/5) .. dachte ich, funktioniert nicht, da 1/5 ergibt 1. Also ist richtig:
32**(1/5.0)
import math math.sqrt(n)
Das gilt nur fuer die zweite Wurzel (sqrt ist die Kurzform fuer 'square root'). gruss Marcus _______________________________________________ python-de maillist - python-de@python.net http://python.net/mailman/listinfo/python-de
Benjamin Kaminski wrote:
Hallo, wie zieht man unter python eigentlich die n-te wurzel aus einer zahl?
Vielen Dank. Mit etwas Mathematik: n-te Wurzel aus x == x hoch 1/n Oder in python:
2 ** (1/3.) 1.2599210498948732 1.2599210498948732 ** 3 2.0
HTH, Wolfram _______________________________________________ python-de maillist - python-de@python.net http://python.net/mailman/listinfo/python-de
participants (5)
-
Benjamin Kaminski
-
Georg Mischler
-
Marcus von Appen
-
max
-
Wolfram Kraus