• 0 Posts
  • 48 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle











  • The function should be cubic, so you should be able to write it in the form “f(x) = ax^3 + bx^2 + cx + d”. You could work out the entire thing to put it in that form, but you don’t need to.

    Since there are no weird operations, roots, divisions by x, or anything like that, you can just count how many times x might get multiplied with itself. At the top of each division, there are 3 terms with x, so you can quite easily see that the maximum will be x^3.

    It’s useful to know what the values x_i and x_y are though. They describe the 3 points through which the function should go: (x_1, y_1) to (x_3, y_3).

    That also makes the second part of the statement ready to check. Take (x_1, y_1) for example. You want to be sure that f(x_1) = y_1. If you replace all of the “x” in the formula by x_1, you’ll see that everything starts cancelling each other out. Eventually you’ll get “1 * y_1 + 0 * y_2 + 0 * y_3”, thus f(x_1) is indeed y_1.

    They could have explained this a bit better in the book, it also took me a little while to figure it out.



  • That is true, but from a human perspective it can still seem non-deterministic! The behaviour of the program as a whole will be deterministic, if all inputs are always the same, in the same order, and without multithreading. On the other hand, a specific function call that is executed multiple times with the same input may occasionally give a different result.

    Most programs also have input that changes between executions. Hence you may get the same input record, but at a different place in the execution. Thus you can get a different result for the same record as well.


  • That exact version will end up making “true” false any time it appears on a line number that is divisible by 10.

    During the compilation, “true” would be replaced by that statement and within the statement, “__LINE__” would be replaced by the line number of the current line. So at runtime, you end up witb the line number modulo 10 (%10). In C, something is true if its value is not 0. So for e.g., lines 4, 17, 116, 39, it ends up being true. For line numbers that can be divided by 10, the result is zero, and thus false.

    In reality the compiler would optimise that modulo operation away and pre-calculate the result during compilation.

    The original version constantly behaves differently at runtime, this version would always give the same result… Unless you change any line and recompile.

    The original version is also super likely to be actually true. This version would be false very often. You could reduce the likelihood by increasing the 10, but you can’t make it too high or it will never be triggered.

    One downside compared to the original version is that the value of “true” can be 10 different things (anything between 0 and 9), so you would get a lot more weird behaviour since “1 == true” would not always be true.

    A slightly more consistent version would be

    ((__LINE__ % 10) > 0)
    



  • yggdar@lemmy.worldtoHacker News@derp.fooDecimal Time
    link
    fedilink
    English
    arrow-up
    1
    ·
    6 months ago

    Makes sense, you clearly thought about this! From a world-building perspective I do have a follow-up question: 86.4k seconds is our definition of a second, but it is essentially a convention and there is no reason for it. In a society that throws out the hours and minutes, why did they keep our second? It seems like it would have made sense for them to define the day as 100k of some new (slightly smaller) unit. That could have given them 10 “hours” of 100 “minutes” of 100 “seconds”.


  • yggdar@lemmy.worldtoHacker News@derp.fooDecimal Time
    link
    fedilink
    English
    arrow-up
    2
    ·
    6 months ago

    Why split the day into 8?

    You definitely have a point with base-12 though. If base-10 wasn’t so ingrained already, base-12 would be a very logical choice. You can even count to 12 easily on one hand, using your thumb to keep track of where you are and counting on the segments of each of your 4 other fingers.


  • According to this article, an average smartphone uses 2W when in use. That number will largely be dependent on the screen and SOC, which can be turned off or be placed in a lower power state when the phone isn’t actively being used. (The 5W - 20W figure is for charging a phone.)

    With 8 of these cells, you’ll have 800μW, or 0.0008W, and you need 2W. You will need to add a few more batteries… About 19,992 more. If 8 of these batteries are about the same size as a regular smartphone battery, you will need the equivalent of 2,500 smartphone batteries to power just one phone.

    Too bad they don’t say how much the new batteries weigh! It would have been fun to see…

    If we ballpark it and assume something the size of a regular smartphone battery is 50g (1.7 oz), then our stack of 20,000 of these new batteries could be about 125kg (275 lbs).

    I won’t be replacing any of my batteries just yet.