Geral
CALCULO-II
Semana 2
0

Questão

Considere a função contínua estilo mostrar f (x, y) = e ^(x) + y sobre uma região limitada estilo mostrar D , delimitada por estilo mostrar 0 ≤ x ≤ 1 e pelas curvas estilo mostrar y = x² e estilo mostrar y = x .

Encontre a integral dupla estilo mostrar integral duplo _D f (x, y) d A sobre a região estilo mostrar D e assinale a alternativa com o valor correto.

A) estilo mostrar e² / 2 - e
B) estilo mostrar 3 - e
C) estilo mostrar e² / 6 - 1
D) estilo mostrar 1 - 2 / e
E) estilo mostrar 46 / 15 - e
function vote(questaoId, value) { window.location.href = "/accounts/login/?next=/questao/2288/"; return; fetch(`/vote/questao/${questaoId}/`, { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-CSRFToken': 'LYR7NqiHrG2l8LhVgi3b3s4CFMwPm0uyq7l9aCpDBG1wkYYc417G6oXOa7c2JgAO' }, body: JSON.stringify({ value: value }) }) .then(response => response.json()) .then(data => { if (data.success) { document.getElementById(`score-${questaoId}`).textContent = data.score; const upBtn = document.querySelector(`button[onclick="vote(${questaoId}, 1)"]`); const downBtn = document.querySelector(`button[onclick="vote(${questaoId}, -1)"]`); upBtn.classList.remove('active-up'); downBtn.classList.remove('active-down'); if (data.user_vote === 1) upBtn.classList.add('active-up'); if (data.user_vote === -1) downBtn.classList.add('active-down'); } }); }