Ratio of metallic ratios 0 ▲ John D. Cook 2 hours ago · Writing · hide · 0 comments The golden ratio is the first and best known of the metallic ratios. I’ve written about the silver ratio a few times, most recently here. And I’ve mentioned the bronze ratio a couple times. The metallic ratios after bronze don’t have standard names. The nth metallic ratio M(n) is the number whose continued fraction representation contains all ns. When n = 1, 2, and 3 we get the gold, silver, and bronze ratios. You can approximate any positive real number as a ratio of metallic ratios. To see this, note that for large n, M(n) is approximately n. For any positive rational number a/b, and so you can make M(na) / M(nb) as close to a/b as you like by taking n large enough. And since the rationals are dense in the reals, you can approximate any positive real number as close as you’d like. Let’s look for metallic ratios whose ratios approximate π to within 0.001 with the following Python code. from math import pi, sqrt M = lambda n: 0.5*(n + sqrt(n**2 + 4)) for n in range(1, 100): a =… No comments yet. Log in to reply on the Fediverse. Comments will appear here.