-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adiciona questão 05 da prova de 2018 #56
Merged
lucasmedeiros
merged 8 commits into
OpenDevUFCG:master
from
valterlucena:questao05-2018
Mar 10, 2020
Merged
Changes from 3 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
042b085
adiciona novo autor
533ffaf
adiciona questao 5 da prova de 2018
7845c60
muda id do autor da justificativa para string
d458390
Merge branch 'master' into questao05-2018
3b2b177
Merge branch 'master' into questao05-2018
lucasmedeiros 91e6a1a
Merge branch 'master' into questao05-2018
pedroespindula 24aaee3
retira justificativa da questão
96856a1
remove informações de autor
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,11 @@ | |
"nome": "Matheus Alves dos Santos", | ||
"email": "[email protected]", | ||
"github": "alvesmatheus" | ||
}, | ||
|
||
"3": { | ||
"nome": "Valter Vinícius Marinho de Lucena", | ||
"email": "[email protected]", | ||
"github": "valterlucena" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"ano": "2018", | ||
"questao": "5", | ||
"area": "Matemática", | ||
"enunciado": "Calcule o limite de $\lim_{x \to \infty }(\sqrt{x^4+x^2} + \sqrt{x^2+5x} - x² - x)$:", | ||
"img_url": [], | ||
"alternativas": { | ||
"A": "1", | ||
"B": "5", | ||
"C": "∞", | ||
"D": "0", | ||
"E": "3" | ||
}, | ||
"resposta": "E", | ||
"autor": ["3"], | ||
"temas": ["Limites"], | ||
"justificativa": "$\lim_{x \to \infty }(\sqrt{x^4+x^2} + \sqrt{x^2+5x} - x^2 - x) \newline= \lim_{x \to \infty }(\sqrt{x^4+x^2} - x^2) + \lim_{x \to \infty }(\sqrt{x^2+5x} - x) \newline=\lim_{x \to \infty }[(\sqrt{x^4+x^2} - x^2)\frac{(\sqrt{x^4+x^2} + x^2)}{(\sqrt{x^4+x^2} + x^2)}] + \lim_{x \to \infty }[(\sqrt{x^2+5x} - x)\frac{(\sqrt{x^2+5x} + x)}{(\sqrt{x^2+5x} + x)}] \newline= \lim_{x \to \infty }(\frac{x^2}{\sqrt{x^4+x^2} + x^2}) + \lim_{x \to \infty }(\frac{5x}{\sqrt{x^2+5x} + x}) = \lim_{x \to \infty }[\frac{x^2}{x^2(\frac{\sqrt{x^4+x^2}}{x^2} + 1)}] + \lim_{x \to \infty }[\frac{5x}{x(\frac{\sqrt{x^2+5x}}{x} + 1)}]\newline= \lim_{x \to \infty }(\frac{1}{\frac{\sqrt{x^4+x^2}}{x^2} + 1}) + \lim_{x \to \infty }(\frac{5}{\frac{\sqrt{x^2+5x}}{x} + 1})\newline=\lim_{x \to \infty }[\frac{1}{\frac{\sqrt{x^4(1+\frac{1}{x^2})}}{x^2} + 1}] + \lim_{x \to \infty }[\frac{5}{\frac{\sqrt{x^2(1+\frac{5}{x})}}{x} + 1}]\newline=\lim_{x \to \infty }[\frac{1}{\frac{x^2\sqrt{1+\frac{1}{x^2}}}{x^2} + 1}] + \lim_{x \to \infty }[\frac{5}{\frac{x\sqrt{1+\frac{5}{x}}}{x} + 1}]\newline=\lim_{x \to \infty }(\frac{1}{\sqrt{1+\frac{1}{x^2}} + 1}) + \lim_{x \to \infty }(\frac{5}{\sqrt{1+\frac{5}{x}} + 1})\newline=\frac{1}{\sqrt{1+0} + 1} + \frac{5}{\sqrt{1+0} + 1}\newline=\frac{1}{\sqrt{1} + 1} + \frac{5}{\sqrt{1} + 1}\newline=\frac{1}{2} + \frac{5}{2} = 3$" | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Acredito que aqui teríamos que colocar uma imagem ao invés da fórmula, testei no katex e não renderizou :'(