General Q&A on the topic of the site.
Filters (None)
Considere o espaço vetorial $V$ dos polinômios de grau <= 3, com a base $\{1,x,x^2,x^3\}$. Qual é a matriz do operador derivada $D:V\rightarrow V$?
Olá, alguém consegue me ajudar com a integral $\int \cos^3(x)\sin(3x)\,dx$?
Teste de "syntax highlighting": #include <stdlib.h> #include <stdio.h> #include <errno.h> #define KNOWN_GARBAGE ((int*)~0u) int main (void) { int* ptr = KNOWN_GARBAGE...
Exemplo de programa: # Solve the quadratic equation ax**2 + bx + c = 0 # import complex math module import cmath a = 1 b = 5 c = 6 # calculate the discriminant d = (b**2) - (4*a*c) ...