This table indicates the break down of what operating system people are using in America and Australia.
Assuming that the relevant proportion is the same in both Australia and America, use this data to find an approximate 95% confidence interval for the percentage of people in these countries who use an alternative operating system. Interpret this interval
I found the percentages by for America and Australia (142/246 and 84/154 respectively) but i'm not sure what to do after this. Do I have to find the standard deviation and sub into the 95% confidence interval formula?
TIA
I assume you want two confidence intervals, one for America and one for Australia.
For America: The traditional 95% CI for the binomial proportion $p$ is based on $\hat p = 142/246$ and $n = 246.$ The interval is $$\hat p \pm 1.96 \sqrt{\frac{\hat p(1-\hat p)}{n}},$$ which computes to $(0.516, 0.639)$.
A somewhat more accurate 95% CI is the 'Agresti` or 'Plus Four' CI, based on $\tilde n = n + 4$ and $\tilde p = (142 + 2)/\tilde n$. The interval is $$\tilde p \pm 1.96 \sqrt{\frac{\tilde p(1-\tilde p)}{\tilde n}},$$ which computes to $(0.515, 0.637)$.
Computations in R statistical software are shown below:
In some countries the 'Wilson' interval is used. For 95% CIs it gives results very similar to Agresti's. See Wikipedia, or perhaps your text.
For Australia: CIs can be computed similarly.
Comparison: If you want to compare the two proportions to see if they differ between countries, there are several ways to do this. Here is output from Minitab statistical software which includes an approximated test and CI based on normal approximation and 'Fisher's exact test' based on a hypergeometric distribution.
There is no evidence of a different in rates between the two countries: (a) the CI includes 0; (b) the P-values of the tests are far above 5%.