I want to convert an instantaneous mortality rate that is reported per year (actual value = $0.58y^{-1}$) into a weekly mortality rate.
This answer gives the formula as $j=(1+i)^{1/12}-1$ where $j$ is monthly interest rate and $i$ is the annual rate.
But this answer gives the formula as $j=1-(1-i)^{1/365}$ where $j$ is daily mortality rate and $i$ is the annual rate again.
If I use both of these to calculate my weekly rate I get different answers.
x = 0.58
((1 + x)^(1/52)) - 1
# Versus
1 - (1 - x) ^ (1 / 52)
Where am I going wrong?