What's new

How to compute Sample Size? (thesis)

_Big Boss_

Forum Veteran
Joined
May 20, 2020
Posts
699
Reaction
4,090
Points
705
Pa compute naman po nito at patingin po ng solution. Kahiya-hiya man po. Thank you po

Screenshot_20220910_212631.jpg
 

Attachments

What have you done so far? I don't like spoonfeeding people when they have not provided their own solution when a simple search on the internet is enough.

Also, since hindi given your instructions, di ko alam yung tamang procedure.
 
What have you done so far? I don't like spoonfeeding people when they have not provided their own solution when a simple search on the internet is enough.

Also, since hindi given your instructions, di ko alam yung tamang procedure.
Sample size
POLICE : 48 = 88%
Residents : 383 = 0.43%

Eto po yung computation ko pero not sure po.
 
Sample size
POLICE : 48 = 88%
Residents : 383 = 0.43%

Eto po yung computation ko pero not sure po.
Ganyan din na kuha ko:

1662824587965.png

Python:
def szu(z, e, P):
    return ((z**2)*P*(1-P))/e**2

def sz(N, z, e, P):
    return szu(z, e, P)/ (1 + szu(z, e, P)/N)

print(sz(54, 1.96, 0.05, 0.5))
print(sz(87693, 1.96, 0.05, 0.5))

47 with 88.89%
382 with 0.44%
 

Attachments

Similar threads

Back
Top