a thoughtful web.
Good ideas and conversation. No ads, no tracking.   Login or Take a Tour!
yakov's comments
activity:
yakov  ·  383 days ago  ·  link  ·    ·  parent  ·  post: Lithium in Local Drinking Water During Pregnancy Tied to Kids' Autism

I believe the 1.23 odds ratio is per IQR incease. For the highest quartile the OR is 1.46 (95% CI 1.35-1.59).

yakov  ·  383 days ago  ·  link  ·    ·  parent  ·  post: Ptolemy versus Copernicus

This is tangential, but the Hellenistic Greeks already understood that the planets orbit around the sun, and this knowledge was forgotten by the time of Ptolemy (source: Lucio Russo - The Forgotten Revolution).

I often think of this quote by David Fremlin: "Indeed I have very little confidence in anything I have ever read concerning the history of ideas."

yakov  ·  2495 days ago  ·  link  ·    ·  parent  ·  post: 3rd Weekly Bakers' Thread

Trying out the oven in my new apartment. This one actually stays at 475°.

yakov  ·  2881 days ago  ·  link  ·    ·  parent  ·  post: Man do I love the internet

I'm thinking of trying out EVE. Any chance I could get a referral link from you?

yakov  ·  2975 days ago  ·  link  ·    ·  parent  ·  post: Roots, Roots!

Neat.

What method did you use to find the roots? And how long did it take to render?

yakov  ·  2987 days ago  ·  link  ·    ·  parent  ·  post: Facebook fruit and maths puzzle tricks adults into arguing about algebra

Eh, not really a math puzzle, more of an exercise in vigilance. I always feel indignant after seeing this sort of thing: it seems deliberately designed to insult the player's intelligence.

yakov  ·  3049 days ago  ·  link  ·    ·  parent  ·  post: American Horror Story: The Cecil Hotel

So a couple of years ago I was staying in LA with a friend. I was wondering if the tap water in LA is safe to drink, so I did a search from our hotel room, and found this: "Yes, it's fine. Unless you are staying at the Cecil hotel of course." What do you know... we were staying at the Hotel Cecil. I was pretty confused until I looked up the story.

I drank the tap water. I was fine.

yakov  ·  3052 days ago  ·  link  ·    ·  parent  ·  post: Scans prove there’s no such thing as a ‘male’ or ‘female’ brain

Here's the study: Sex beyond the genitalia: The human brain mosaic

The findings are interesting, but the conclusion seems unwarranted (even sensational.) Sure, there may be a large overlap between the male distribution and the female distribution for each sexually dimorphic structural feature, but that doesn't imply that you can't identify the sex of a given brain with very high accuracy by considering all such features, thus categorizing brains into two very distinct groups.

yakov  ·  3080 days ago  ·  link  ·    ·  parent  ·  post: Jabberwocky

That is strange.

I've never understood people who make things like this. It's crazy that the students in the video seem to be actually having fun. And how does it help anyone learn biology, really?

yakov  ·  3150 days ago  ·  link  ·    ·  parent  ·  post: Looking for good reads

Thumbs up for Cryptonomicon and Anathem.

Another sf recommendation: Wool by Hugh Howey. Not quite free, but well worth it.

yakov  ·  3153 days ago  ·  link  ·    ·  parent  ·  post: A nice problem from SICP

Yeah, it's tough, I don't really know how to go about it. But here's at least a demonstration for three denominations, {1, 2, 5}: (n is the total amount to add up to)

    def onetwofive(n):

numfives = math.floor(n/5.)+1

return int( numfives * (n % 5 + n + 3)/4 - (numfives % 2) * (n % 2 - 0.5) / 2. )

Disgusting, I know! But it works: I double checked it against your code, it gives the same result up to n=5000.

An estimate for four denominations {1, 2, 5, 10} is n^3/600; for five denominations {1, 2, 5, 10, 25}, n^4/60000. I got these by summing crudely and dropping low order terms. They seem to be asymptotic: the estimate for five denominations is accurate to within 5% of the true value for n > 2000. That might seem silly but count_change does get quite slow for n >> 10^6 (that's $10,000.00), while the approximation is good to within 0.01%.

edit: You could write a program that returns an estimator function for a given set of denominations. See Faulhaber's formula.

yakov  ·  3153 days ago  ·  link  ·    ·  parent  ·  post: A nice problem from SICP

You're right. I hadn't quite thought it through, but it would work well: eg. for 8 coin values, if you need to calculate the number of ways to make 2.00, you need to make at most 200*8=1600 calls to the recursive function. So you get O(n) efficiency.

But it still seems like you should be able to do better: O(1) would be possible with a closed-form formula.

edit: Oh, I noticed you actually implemented it with memoization. Great!

yakov  ·  3159 days ago  ·  link  ·    ·  parent  ·  post: A nice problem from SICP

I remember reading SICP. It's a lot of fun.

The recursive algorithm reminds me of something I was just looking at the other day, the Chu-Vandermonde identity.

One obvious way to speed it up is memoization. But I wonder if that would be as effective in this case as for Fibonacci.

Another way would be to just handle the penny case by just outputting 1 straight away if amount >= 0, and handle the penny-and-nickel case by outputting 1+floor(amount/5). I'd imagine that just doing this would speed up the program quite a bit.

But a straight-up, non-recursive calculation in one fell swoop? I'm not sure how to do that.

yakov  ·  3159 days ago  ·  link  ·    ·  parent  ·  post: A puzzle: How to most quickly destroy the tank?

Sorry, but I still only have a very hazy idea of what you're trying to say! It seems like a very slippery argument and I'm not sure that it holds water. Could you make it more rigorous?

The first claim is that each black square must be bombed before its adjacent white squares. I take this to mean that if S is a guaranteed-tank-destroying sequence of firing coordinates, and b is some particular black square with w some particular neighbor of b, then the first occurence of b in S must fall before the last occurence of w. (That is, b may be targeted after w as many times as one pleases, as long as w is targeted at least once after the first targeting of b.)

The next statement is: "bombing all blacks and then all whites is the same as bombing them in some other pattern that meets the same requirements and outputs the same number(for instance, bombing all whites in a row then bombing all blacks in a row.)" And here I'm completely lost: What does it mean, precisely, for two firing sequences to be "the same"? Does it mean that either they both are guaranteed to kill the tank or they both are not, and that they are also of the same length?~

yakov  ·  3159 days ago  ·  link  ·    ·  parent  ·  post: A puzzle: How to most quickly destroy the tank?

    if the tank starts on a black square, you must bomb all black squares and then all white squares. If the tank starts in a white square, you must bomb all white squares and then all black squares and then all white squares. Therefore the bombing run must be W-B-W.

In fact if the tank starts on a black square, you must merely bomb that ONE square before all of its neighbours. You say that it's necessary to bomb all the black squares first, use that claim as proof for a lower bound, then admit in the next paragraph that in fact bombing all the black squares first is unnecessary. So I still don't see how you've shown that it's impossible to destroy the tank in fewer shots. Perhaps by some clever interleaving of black and white squares you might save a missile or two?

yakov  ·  3160 days ago  ·  link  ·    ·  parent  ·  post: A puzzle: How to most quickly destroy the tank?

I am not convinced that you've shown that it cannot be done in fewer moves. It seems that you are begging the question: why must you necessarily bomb all the black squares at once?

In fact, it is not necessary: I can think of many other sequences that destroy the tank in 2521 moves.

yakov  ·  3297 days ago  ·  link  ·    ·  parent  ·  post: Do any of you play go? Want to learn?

Nope!

Wow, sorry about the late reply, I haven't been on hubski for a while.

Actually I'm xiuhcoatl on OGS. If you're still interested, send me a challenge! I play 19x19 pretty much exclusively but I wouldn't mind a 13x13 match.

yakov  ·  3405 days ago  ·  link  ·    ·  parent  ·  post: My favourite math puzzle

That's the correct solution. Yeah, you're right, it's not all that hard. I was twelve when I first heard it so I suppose it made an impression.

yakov  ·  3405 days ago  ·  link  ·    ·  parent  ·  post: 10th Occasional Give Us a Quote from Your Recent Reading

    Because the strain energy storage of horn and tendon, as materials, is better than that of yew, a composite bow can be made shorter and lighter than a wooden one. This is why we talk of a wooden bow as a 'long' bow. The composite bow could be made small enough to be used on horseback, as was indeed done by the Parthians and the Tartans. The Parthian bow was handy enough for the cavalrymen to be able to shoot backwards, as they retreated, at their Roman pursuers; from this we get the phrase 'a Parthian shot'.

From Structures by James Edward Gordon.

yakov  ·  3405 days ago  ·  link  ·    ·  parent  ·  post: 10th Occasional Give Us a Quote from Your Recent Reading

Great poem. There was a poker-based parody on 2+2 a while back, and someone made a recording:

yakov  ·  3405 days ago  ·  link  ·    ·  parent  ·  post: My favourite math puzzle

At least one. And other eye colors are allowed, not just blue and green.

Yeah, there's really no trick. When you get the solution you'll know.

yakov  ·  3405 days ago  ·  link  ·    ·  parent  ·  post: Hubski quiz: a math puzzle

As thundara demonstrated, the problem as stated is quite straightforward: As long as you're within distance r/4 of the center (r being the radius), you can remain on the opposite side of the center from the monster. That means that you have only (3/4)r distance to row straight out, while the monster must run halfway around the lake, a distance of πr. Since πr/4 > (3/4)r, you can simply row straight out from that point and you'll win. In fact, as long as the monster is slower than π + 1≈ 4.14 times as fast as you, you can live without having to make any complicated maneuvers.

A more interesting question is: What is the worst case? That is, how fast can the monster run and still be unable to catch you? Seems like we will need curves for this one. Not sure if you need the calculus of variations or if there's a more elementary approach.

Update: There's a link on stackexchange to an article at generic maths. This article claims that a straight path is best, although there is a better straight path than the one I gave:

    if you rowed on a curved line, you'd end up at a location that you could have gotten to quicker with a straight shot.
Seems reasonable, but not entirely convincing. Update 2: I'm convinced now.
yakov  ·  3408 days ago  ·  link  ·    ·  parent  ·  post: HUBSKI ANIME CLUB: Akira -- in 7 days!

Why do people dislike dubtitles so much? And how can you tell the difference if you don't understand Japanese?

How do I know if my copy has dubtitles?

yakov  ·  3409 days ago  ·  link  ·    ·  parent  ·  post: How do *you* Hubski?

Are you serious? You're basically using hubski the way you'd use delicious? That's disappointing. Seems to me that the whole point of hubski is community and conversation.

So why hubski at all? Why not use reddit or delicious or stumbleupon or digg or any one of a hundred other social bookmarking sites?

yakov  ·  3413 days ago  ·  link  ·    ·  parent  ·  post: HUBSKI ANIME CLUB: Winter Edition

Cool. Looks like we're doing Akira -- I'll make the final announcement tomorrow if nothing changes.

yakov  ·  3414 days ago  ·  link  ·    ·  parent  ·  post: December Photo Challenge, Day 18: "Up Close"

That's a shame.

I just got my first orchid as a gift in September. Started reading up on them, got hooked, went to a show the next month and bought three more. Two of them just started budding last week: unexpected at this time of year, but I'm not complaining!

yakov  ·  3414 days ago  ·  link  ·    ·  parent  ·  post: December Photo Challenge, Day 18: "Up Close"

Are they yours? What's the one in the background?

yakov  ·  3414 days ago  ·  link  ·    ·  parent  ·  post: Pubski: December 17, 2014

Of course everyone offers conflicting advice. Here's mine: read this.

yakov  ·  3417 days ago  ·  link  ·    ·  parent  ·  post: Audiobooks, Hubski! Give me your favorites!

    yakov mentioned [librivox]

Oops, I have no opinion on librivox one way or another. I found a book through Podcast Addict and librivox was just where it was hosted.

yakov  ·  3417 days ago  ·  link  ·    ·  parent  ·  post: Audiobooks, Hubski! Give me your favorites!

I'm not generally big on audiobooks, but recently I listened to About Orchids, a Chat. Written in 1893, packed with interesting anecdotes about the orchid trade. Check it out if you're looking for something off the beaten path.