Chapitre 3.2(module math) Flashcards

1
Q

Calcule l’arcosinus , en radians, de x

A

import math

acos(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Calcule arcsin, en radians , de x

A

import math

asin(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Calcule arctangente, en radians, de x

A

import math

atan(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Calcule le plafond de x (le premier entier que nous rencontrons sur la droite)

A

import math

ceil(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Calcule cosinus de x ,en rad

A

import math

cos(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Converti en degrés un angle x donné en rad

A

import math

degrees(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Met la valeur e

A

import math

e

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Met la fonction exponentielle de e

A

import math

exp(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Calcule le plancher de x (le premier entier que nous rencontrons sur la gauche)

A

import math

floor(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Calcule la distance euclédienne entre (0,0) et (x,y)

A

import math

hypot(x,y)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Calcule le log en x en base de 10

A

import math

log10(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Calcule le log de x avec la base spécifiée

valeur par défaut de la base est e

A

import math

log(x[,base])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Met la constante pi

A

import math

pi

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Calcule la puissance de deux arguments

A

import math

pow(x,y)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Converti en rad , un angle x donné en degrés

A

import math

radians(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Calcule le sin de l’angle x , mesuré en rad

A

import math

sin(x)

17
Q

Calcule la racine carré de x

A

import math

sqrt(x)

18
Q

Tronque le nombre x à l’entier le plus proche, en direction de 0

A

import math

trunc(x)