Geral
Cálculo I
Semana 2
0

Questão

Considere a função  f (x) = (x² - 2 x + 1) / (x - 1) sin (1 / (x - 1)) . Calcule o limite de 𝑓(𝑥) para 𝑥 tendendo a 1 e assinale a alternativa correta:

A)

limite como x seta para a direita 1 de f (x) = - infinito

B)

limite como x seta para a direita 1 de f (x) = 0

C)

limite como x seta para a direita 1 de f (x) = + infinito

D)

limite como x seta para a direita 1 de f (x) = - 1

E)

limite como x seta para a direita 1 de f (x) = 1

function vote(questaoId, value) { window.location.href = "/accounts/login/?next=/questao/999/"; return; fetch(`/vote/questao/${questaoId}/`, { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-CSRFToken': 'm2Fpx71vtD26ylZPS0DHbQBiBgughxnJ6ulmdqHMSYVI5HcGQVqHcC53plY9OzpQ' }, 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'); } }); }