|
dimanche 06 septembre 2020 à 15h37
|
Merci beaucoup adri1
|
|
dimanche 06 septembre 2020 à 14h55
|
D'accord, comment aurait tu fais donc ? Pour connaître la bonne méthode
|
|
dimanche 06 septembre 2020 à 14h38
|
Au final j'ai fait autrement mais ça fonctionne :
```py
from math import*
from pylab import*
def representation():
x=arange(0,10,0.01)
y_1=log(1+x)
y_2=x-(x**2/2)
y_3=x
plot(x,y_…
|
|
dimanche 06 septembre 2020 à 13h43
|
J'obtiens donc :
```py
import numpy as np
from math import*
from matplotlib.pyplot import*
x=arange(0,10,0.01)
y_1=log(1+x)
y_2=x-x²/2
y_3=x
plot(x,y_1)
plot(x,y_2)
plot(x,y_3)
show()
…
|
|
dimanche 06 septembre 2020 à 13h20
|
J'étais en train de modifier mon message, j'ai fait ça :
```py
from math import*
from matplotlib.pyplot import*
x=arange(-10,10,0.01)
y_1=log(1+x)
y_2=x-x²/2
y_3=x
plot(x,y_1)
plot(x,y_2)
…
|
|
dimanche 06 septembre 2020 à 13h08
|
Oui c'est ce qu'on nous demande, enfin c'est le début.
J'avais une autre question à poser d'ailleurs. Notre professeur nous demande de construire une fonction *représentation* qui ne prend pas d'a…
|
|
dimanche 06 septembre 2020 à 12h58
|
Bonjour adr1,
Merci j'avais oublié qu'il fallait mettre # pour les commentaires
Mais je viens de tester le programme suivant :
```py
from math import*
def f(x):
if x>-1:
return log…
|
|
dimanche 06 septembre 2020 à 12h32
|
Cela donnerai donc :
```py
from math import*
def f(x):
if x>-1:
return log(1+x)
print(log(1+x))
else:
print("x n'appartient pas à I")
```
Et ça fonctionne!!
Merci beauc…
|
|
dimanche 06 septembre 2020 à 11h58
|
Merci de ta réponse Aabu, mais comment je dois créer une liste qui décrit l'intervalle I=]-1;+infini[ où -1 est exclu ? Car si je tape : ```I=[-1,10^9[``` (je prends 10^9 car je ne peux pas écrire in…
|
|
dimanche 06 septembre 2020 à 10h30
|
Bonjour Aabu,
Ce qui me bloque le plus c'est la liste, sinon j'ai déjà avancé comme je pouvais :
```py
from math import*
x=50 "par exemple"
I=[-1,inf] "sauf que -1 doit être exclu et je ne c…
|
|
dimanche 06 septembre 2020 à 09h47
|
Bonjour,
Je suis nouveau sur le forum,
Je vous poste ce message car j'ai besoin d'aide pour un exercice de mathématiques dans lequel il y a de la programmation.
Je dois défini dans le langa…
|