Ted Dunning

@ted_dunning
606 Followers
312 Following
544 Posts

I am much more active on https://bsky.tdunning.com/

Member of Apache Software Foundation, committer on many Apache projects, Fellow at HPE, CTO for Data Fabric.

For all of the problems in Russia right now, the relics of the Soviet education system persist. Here is the pile of books for a 13-year old daughter of a former colleague. Not a bad mix.

(geometry, probability and statistics, algebra, informatics, literature and art)

My Russian has decayed over the decades, but the introduction to that physics book looks pretty good.

My guess is the history and current events material is bizarre, but I really wish US schools had this level of material.

I thought of her when we were walking through the woods on the weekend to visit the redwoods (our neighbors).

Underneath the trees, there were still some blooms from the Redwood Sorrel.

Redwoods are a great metaphor for rebirth and resilience. It is in their nature.

https://www.youtube.com/watch?v=LeE-bV1zD9Y

I Think of You

YouTube

This is what a 3d Dirichlet distribution looks like for different levels of distribution parameter.

Generated using Julia:

using Distributions, Printf
@gif for z in 10 * sin.(0:0.01:π)
alpha = 2^-z
d = Dirichlet(3, alpha)
pr = [0 -sqrt(3)/2 sqrt(3)/2; 1 0 0]
s = [ntuple(i->x[i],2) for x in eachcol(pr* rand(d, 20000))]
scatter(s, alpha=0.1, color=:black, markersize=2, legend=false)
annotate!([(0.4, 0.8, @sprintf "α = %.3f" alpha)])
end