Skip to main content

list manipulation - Generating an Ulam spiral


An Ulam Spiral is quite an interesting construction, revealing unexpected features in the distribution of primes.


Here is a related topic with one answer by Pinguin Dirk, who has provided one approach.


I've created a faster implementation, but I believe it can surely be speeded up:


ClearAll[spiral]
spiral[n_?OddQ] := Nest[
With[{d = Length@#, l = #[[-1, -1]]},
Composition[
Insert[#, l + 3 d + 2 + Range[d + 2], -1] &,

Insert[#\[Transpose], l + 2 d + 1 + Range[d + 1], 1]\[Transpose] &,
Insert[#, l + d + Range[d + 1, 1, -1], 1] &,
Insert[#\[Transpose], l + Range[d, 1, -1], -1]\[Transpose] &
][#]] &,
{{1}},
(n - 1)/2];

spiral[5] // MatrixForm
spiral[201] // PrimeQ // Boole // ArrayPlot



enter image description here


enter image description here



This is good enough for my purposes, and I don't have time to focus on this now, However, it might be interesting for future visitors, so the question is how to make it faster by improving/rewriting.




Note: There may be confusion concerning whether I need a matrix populated with primes or one populated only with 0 and 1, 1 indicating the prime positions. Let's assume it doesn't matter. Maybe someone has a neat idea for the first representation that does not look good in the second one, so I'm leaving it open.



Answer



The function findPrimePosInBoundarys below finds out which primes are on which square and where they are on such squares. The coordinate is just an integer and for layer = 3, the coordinates indicate the following positions.


enter image description here



It does so for each layer<=layers


findPrimePosInBoundarys[layers_] :=
Block[
{intRoot, primePiClean, primes, ran, squares, oneMostSquares,
primePis, primeSpans, primesPerLayer}
,
intRoot = 2*layers - 1;
primePiClean = PrimePi[intRoot^2];
primes = Prime /@ Range[primePiClean];
ran = Range[3, intRoot, 2];

squares = ran^2;
oneMostSquares = Prepend[Most@squares, 1];
primePis = PrimePi /@ squares;
primeSpans =
MapThread[Span, {Most[Prepend[primePis, 0] + 1], primePis}];
primesPerLayer = Part[primes, #] & /@ primeSpans;
primesPerLayer - oneMostSquares
]

Below is a compiled function. Given the positions on the square, and which layer we are working on, it transforms this integer position into a {x,y} coordinate.



cfu =
Compile[
{{primePos, _Integer, 1}, {layerMO, _Integer, 0}}
,
Block[
{qRs, varCo, fixedCo, case, pos, len}
,
qRs = {Quotient[#, 2 layerMO, 1], Mod[#, 2 layerMO, 1]} & /@
primePos;
len = Length@primePos;

Table[
{case, pos} = qRs[[i]];

varCo = layerMO - pos;
If[
case == 0 || case == 3
,
varCo = -varCo;
];


If[
case == 0 || case == 1
,
fixedCo = layerMO;
,
fixedCo = -layerMO
];

If[
case == 0 || case == 2

,
{fixedCo, varCo},
{varCo, fixedCo}
]
,
{i, len}
]
]
,
CompilationTarget -> "C"

];

The function below maps the compiled function over the layers


findCoords[pPIB_, layers_] :=
MapThread[cfu, {pPIB, Range[layers - 1]}];

findCoords[layers_] :=
MapThread[
cfu, {findPrimePosInBoundarys[layers], Range[layers - 1]}];


Here is a function to display the result


showSpiral[coords_] :=
Graphics[{Point[{0, 0}], Point /@ coords}]

Now we can do


layers = 101;
(coords = findCoords[layers]) // Timing // First
showSpiral[coords]

Giving




 0.051310

enter image description here



For a larger value of layers, we have


layers = 1001;
(coords = findCoords[layers]) // Timing // First



1.015547

Comments

Popular posts from this blog

plotting - Filling between two spheres in SphericalPlot3D

Manipulate[ SphericalPlot3D[{1, 2 - n}, {θ, 0, Pi}, {ϕ, 0, 1.5 Pi}, Mesh -> None, PlotPoints -> 15, PlotRange -> {-2.2, 2.2}], {n, 0, 1}] I cant' seem to be able to make a filling between two spheres. I've already tried the obvious Filling -> {1 -> {2}} but Mathematica doesn't seem to like that option. Is there any easy way around this or ... Answer There is no built-in filling in SphericalPlot3D . One option is to use ParametricPlot3D to draw the surfaces between the two shells: Manipulate[ Show[SphericalPlot3D[{1, 2 - n}, {θ, 0, Pi}, {ϕ, 0, 1.5 Pi}, PlotPoints -> 15, PlotRange -> {-2.2, 2.2}], ParametricPlot3D[{ r {Sin[t] Cos[1.5 Pi], Sin[t] Sin[1.5 Pi], Cos[t]}, r {Sin[t] Cos[0 Pi], Sin[t] Sin[0 Pi], Cos[t]}}, {r, 1, 2 - n}, {t, 0, Pi}, PlotStyle -> Yellow, Mesh -> {2, 15}]], {n, 0, 1}]

plotting - Plot 4D data with color as 4th dimension

I have a list of 4D data (x position, y position, amplitude, wavelength). I want to plot x, y, and amplitude on a 3D plot and have the color of the points correspond to the wavelength. I have seen many examples using functions to define color but my wavelength cannot be expressed by an analytic function. Is there a simple way to do this? Answer Here a another possible way to visualize 4D data: data = Flatten[Table[{x, y, x^2 + y^2, Sin[x - y]}, {x, -Pi, Pi,Pi/10}, {y,-Pi,Pi, Pi/10}], 1]; You can use the function Point along with VertexColors . Now the points are places using the first three elements and the color is determined by the fourth. In this case I used Hue, but you can use whatever you prefer. Graphics3D[ Point[data[[All, 1 ;; 3]], VertexColors -> Hue /@ data[[All, 4]]], Axes -> True, BoxRatios -> {1, 1, 1/GoldenRatio}]

plotting - Adding a thick curve to a regionplot

Suppose we have the following simple RegionPlot: f[x_] := 1 - x^2 g[x_] := 1 - 0.5 x^2 RegionPlot[{y < f[x], f[x] < y < g[x], y > g[x]}, {x, 0, 2}, {y, 0, 2}] Now I'm trying to change the curve defined by $y=g[x]$ into a thick black curve, while leaving all other boundaries in the plot unchanged. I've tried adding the region $y=g[x]$ and playing with the plotstyle, which didn't work, and I've tried BoundaryStyle, which changed all the boundaries in the plot. Now I'm kinda out of ideas... Any help would be appreciated! Answer With f[x_] := 1 - x^2 g[x_] := 1 - 0.5 x^2 You can use Epilog to add the thick line: RegionPlot[{y < f[x], f[x] < y < g[x], y > g[x]}, {x, 0, 2}, {y, 0, 2}, PlotPoints -> 50, Epilog -> (Plot[g[x], {x, 0, 2}, PlotStyle -> {Black, Thick}][[1]]), PlotStyle -> {Directive[Yellow, Opacity[0.4]], Directive[Pink, Opacity[0.4]],