Created
October 30, 2023 21:09
-
-
Save DATAUNIRIO/4573dbb37a85ec406508a83c537405b0 to your computer and use it in GitHub Desktop.
Tamanho da amostra (fórmula simples)
This file contains hidden or 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
n = (z^2 * p * (1-p)) / (e^2) | |
n = (1,96^2 * 0,5 * (1-0,5)) / (0,05^2) | |
n = (3,8416 * 0,25) / 0,0025 | |
n = 0,9604 / 0,0025 | |
n = 384,16 | |
n = (1.96^2 * 0.5 * (1-0.5)) / (0.02^2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Onde: