• 15 Posts
  • 452 Comments
Joined 2 years ago
cake
Cake day: June 5th, 2023

help-circle
  • Here in Germany, we celebrate mostly on Christmas Eve. I have a couple of hours left to get ready before my stepdad picks me up. We’ll visit my grandma who sadly has to spend the holidays in hospital because she fell and hurt her knee. After that, Christmas dinner at my mom’s and stepdad’s house with most of the family, gifts and a relaxed evening. I’ll stay over night, have breakfast and then go home to finish packing everything I need for my winter vacation which starts on the 26th.

    It’s been an exhausting year and I can really use the downtime.


  • dfyxAtoich_iel@feddit.orgich🎁iel
    link
    fedilink
    arrow-up
    6
    ·
    13 hours ago

    Ich persönlich lasse einfach für jeden (bzw. jedes Paar) einen Kalender mit Fotos, die ich im Lauf des Jahres geschossen hab, drucken. Manche kriegen noch was oben drauf, aber so hat jeder zumindest eine Kleinigkeit.



  • I have a wishlist that I share with my family and close friends. People follow that list unless they have an idea that they’re 100% sure about. I think the only times I got an unwanted gift was things I already had. Either because something went wrong coordinating between people (rare, everyone knows they can contact my partner to ask what’s still available) or because they accidentally bought the wrong thing (like the first book of a series instead the second one).

    The only exception ever was during a single https://givin.gifts/ secret santa exchange where someone at the same time a) completely ignored my profile, b) gifted something below the stated minimum value, c) didn’t wrap my gift, d) didn’t include a card and e) didn’t include any packing material. They just threw a random 5€ item from the supermarket into an unpadded box and called it a day.


  • German here, we have the same thing (du vs. sie). Our rules may be slightly different than dutch but probably similar enough.

    Police: definitely formal unless the officer is someone you know privately.

    Shop: usually formal though some hobby-related shops (think GameStop or board games) might prefer informal.

    Campsite: probably informal

    As a general rule of thumb: informal is used with first names, formal is used with last names. Think about which name you would use in English and go with that. If in doubt, use the formal version or ask.



  • The diagram is pretty good but your interpretation is not quite right, especially for NP-complete and NP-hard.

    NP-hard means “at least as hard as all problems in NP”, proven by the fact that any single NP-hard problem can be used to solve the entire class of all NP problems.

    NP-complete means “at least as hard as all problems in NP and itself also in NP”, so the intersection between NP and NP-hard.

    The thing about P = NP or P != NP is something different. We don’t know if P and NP are the same thing or not, we don’t have a proof in either direction. We only know that P is at least a subset of NP. If we could find a P solution for any NP-hard problem, we would know that P = NP. That would have massive consequences for cryptography and cyber-security because modern encryption relies on the assumption that encrypting something with a key (P) is easier than guessing the key (NP).

    On the other hand, at some point we might find a mathematical proof that we can never find a P solution to an NP-hard problem which would make P != NP. Proving that something doesn’t exist is usually extremely hard and there is the option that even though P != NP we will never be able to prove it and are left to wonder for all eternity.



  • Alright, part 2, let’s get to NP.

    Knowing that P means “in polynomial time”, you might be tempted to think that NP means “in non-polynomial time” and while that kind of goes in the right direction, it means “in non-deterministic polynomial time”. Explaining what non-deterministic calculations are would be a bit too complicated for an ELI5, so let’s simplify a bit. A regular computer must make all decisions (for example which way to turn when calculating a shortest route between two points) based on the problem input alone. A non-deterministic computer can randomly guess. For judging complexity, we look at the case where it just happens to always guesses right. Even when guessing right, such a computer doesn’t solve a problem immediately because it needs to make a number of guesses that depends on the input (for example the number of road junctions between our points). NP is the class of problems that a non-deterministic computer can solve in polynomial Time (O(n^a) for any a).

    Obviously, we don’t really have computers that always guess right, though quantum computers can get us a bit closer. But there are three important properties that let us understand NP problems in terms of regular computers:

    1. a non-deterministic computer can do everything a regular computer can do (and more), so every problem that’s part of P is also part of NP.
    2. every problem that takes n guesses with x options for each guess can be simulated on a regular computer in O(x^n) steps by just trying all combinations of options and picking the best one. With some math, we can show that this is also true if we don’t have n but O(n^a) guesses. Our base x might be different, but we can always find something with n in the exponent.
    3. While finding a solution on a regular computer may need exponential time, we can always check if a solution is correct in polynomial time.

    One important example for a problem in NP is finding the prime factors of a number which is why that is an important basic operation in cryptography. It’s also an intuitive example for checking the result being easy. To check the result, we just need to multiply the factors together and see if we get our original number. Okay, technically we also need to check if each of the factors we get is really prime but as mentioned above, that’s also doable in polynomial time.

    Now for the important thing: we don’t know if there is some shortcut that lets us simulate NP problems on a regular computer in polynomial time (even with a very high exponent) which would make NP equal to P.

    What we do know is that there are some special problems (either from NP or even more complex) where every single problem from NP can be rephrased it as a combination of that special problem plus some extra work that’s in P (for example converting our inputs and outputs to/from a format that fits L). Doing this rephrasing is absolutely mind-bending but there are clever computer scientists who have found a whole group of such problems. We call them NP-hard.

    Why does this help us? Because finding a polynomial-time solution for just a single NP-hard problem would mean that by definition we can solve every single problem from NP by solving this polynomial-time NP-hard problem plus some polynomial-time extra work, so polynomial-time work overall. This would instantly make NP equal to P.

    This leaves us with the definition of NP-complete. This is simply the class of problems that are both NP-hard and themselves in NP. This definition is useful for finding out if a problem is NP-hard but I think I’ve done enough damage to your 5-year-old brain.



  • They are classes that describe how hard a problem is.

    Imagine trying to explain to someone how fast you can do something, for example sorting a list. The simplest way would be saying “I can do that in two seconds” but that’s not very helpful because it depends on how fast your computer is. A better way would be to express it as a number of steps: “I can do that in 10000 steps”. For this ELI5 explanation the exact definition of what a step is doesn’t matter that much, it could be a single CPU instruction or a comparison between two items in the list.

    That gets you a bit closer but obviously, how complex sorting a list is, depends on the list: how long is it and how scrambled is it? Short lists are faster to sort than long ones and lists that are already (almost) sorted are usually fasterto sort than ones in reverse or completely random order. For that you can say “In the worst case, I can sort a list in three times the number of items squared, no matter the initial order”. When writing that down, we call the number of items n, so the total work is 3 * n^2. The bigger n gets, the less the constant factor matters, so we can leave it out and instead write O(n^2). This is, what people call “Big O notation” and it’s the reason why I said the exact definition of a step doesn’t matter that much. As long as you don’t get it too wrong, different step definitions just change the constant that we’re ignoring anyway. Oh and by the way, O(n^2) for sorting lists isn’t that great, good algorithms can reach O(n*log(n)) but I didn’t want to throw logarithms at you right away.

    Now we get close to understanding what P is. It’s the class of all problems that can be solved in “polynomial” time, so O(n^a) for any number a. Note that only the highest exponent is relevant. With some work we could prove that for example O(n^3 + n^2 + n) is equivalent to O(n^3). Examples of problems in n are sorting, route planning and finding out if a number is prime.

    I’m running out of time because I have some errands to run, maybe someone else can explain NP (nondeterministic polynomial time). If not, I’ll add a follow up later today.








  • Never said that, never meant that.

    When I said “inner child” I meant his own capability of leaving his adult responsibilities behind for a while in favor of doing things that society as a whole deems childish. Indulging in certain hobbies, acting a certain way. I can’t find the right English word right now. In German we might call it being “unbeschwert”, so maybe “unburdened”.

    I was specifically replying to the passage that he should have spent those 13 years in age difference growing as a person to an extent that he shouldn’t have much in common with a 16-year old anymore. And to that I ask: why? Must every adult be a joyless, mindless worker drone who can’t enjoy the things they enjoyed when they were 16? I’m happy to discuss if the relationship OP described might be problematic because of a power dynamic and that’s been done to death in this thread. But saying he isn’t allowed to feel connected to someone younger than him based on shared interests or a need to escape his adult responsibilities for a while feels bitter and judgemental.

    None of this has anything to do with me labeling anyone as an actual child.

    Edit: Maybe a picture says more than a thousand words so let me link to my favorite XKCD: https://xkcd.com/150/


  • From my personal experience this “ought to be” is the problem. Once you get your first job, everyone expects you to drop everything that you’re passionate about and start behaving like an adult. That can be overwhelming and I wouldn’t judge anyone for wanting to keep that cozy feeling of being young for a bit longer. And as long as all important responsibilities still get taken care of, why not let adults be as childish as they want, whenever they want?


  • dfyxAtoAsk Lemmy@lemmy.worldLoving someone while not condoning their actions?
    link
    fedilink
    arrow-up
    6
    arrow-down
    11
    ·
    edit-2
    21 days ago

    Oh, don’t get me wrong. It is a bit weird and concerning. But weird and concerning alone are not enough to stop something that’s legal and at least for now seems to work pretty well. And like you said, not much they can do about it. The best course of action is to deal with it, be as accepting and supportive as they can and be prepared to help if things do go wrong. Everything else will make things worse.















Moderates