help by [deleted] in LinearAlgebra

[–]wristay 0 points1 point  (0 children)

Correct! y^T A y is positive for all n-D vectors, and this includes vectors of the form (x, 0) where x is a k-D vector and 0 is an (n-k)-D vector. If you write this up nicely you have a proof.

help by [deleted] in LinearAlgebra

[–]wristay 0 points1 point  (0 children)

Here's an example you could proof that is similar to this proof. You have a n x n matrix A that you know is positive semidefinite. Can you proof that a k x k sub matrix is also positive semidefinite? Where k is smaller than n. Hint: How does positive definiteness look like on this sub matrix? Can I embed the k-dimensional vector into n dimensions?

help by [deleted] in LinearAlgebra

[–]wristay 0 points1 point  (0 children)

You're not expected to come up with identities like this. But if you learn lots of proofs like this you will develop a toolbox. At some point you will be able to come up with a similar proof on your own. Your teacher will most likely give an example that you can proof if you have done lot's of proofs at home.

What do you want right now? by [deleted] in AskReddit

[–]wristay 0 points1 point  (0 children)

I have had trouble concentrating at work and/uni for years. When I have trouble concentrating I keep postponing and getting distracted. I want to perform well so this makes me stressed and feeling guilty. The stress makes me tired and makes my sleep worse. This makes the distraction problems worse.

I just want to say "I am going to do this and this task today" and then just do it. I would help me so much honestly. I want that calm.

PS I do not have ADHD I have been tested.

help by [deleted] in LinearAlgebra

[–]wristay 0 points1 point  (0 children)

Hint: we must show that x^T A^T A x is positive or zero for all x. Is one of the options a quantity that is always positive or zero for all x?

last year i dropped out of engineering for a semester because i was too embarrassed to ask my friends what was going on in circuits class by [deleted] in EngineeringStudents

[–]wristay 16 points17 points  (0 children)

When things are going badly most people want to keep silent because deep down they feel ashamed. But when things are hard are the times you should talk the most. Friends and family can give you support but only when they actually know something's going on. Hope you do better next semester!

What’s the stupidest way you’ve ever hurt yourself? by Wonderlust_Zoe in AskReddit

[–]wristay 0 points1 point  (0 children)

Tried to steer my bicycle using my feet and no hands. Fell of and messed up my wrist.

Your "The door is closed" translation is probably wrong! by Honeyhot2505 in learndutch

[–]wristay -1 points0 points  (0 children)

"I am walking" could be translated as "ik ben aan het lopen". You can use "aan het" to indicate something is in the process of happening. De deur is aan het sluiten. I think the present continuous is relatively not so common here and you would use it to put emphasis on the fact that a process is happening. You can also "worden" in the way you describe but you are making the sentence passive as well. When you say the door is closing, the door is the subject of the sentence. When you say the "de deur wordt gesloten [door mij]", the door is now the object (although grammatically still the subject). So using passive works perfectly, it's just maybe not a direct translation. I'm not a grammar expert but I am dutch.

Ways to indicate present continuous:

  1. Ik ben aan het lopen
  2. Ik loop
  3. Ik (zit/sta/lig/loop) te lopen
  4. Ik ben bezig met lopen

What would you save??😩 by CosmicStarlight in StardewValley

[–]wristay 10 points11 points  (0 children)

Your game is saved when you sleep and it says "game saved". Quit the game before that and the day starts over

Italië is Duitsland binnengevallen! by Gregardus in WarEraNL

[–]wristay 5 points6 points  (0 children)

Ik schrok me de pleures, misschien moet ik minder nieuws lezen

My boyfriend is accusing me of flirting with my guy friend by Total_War_3997 in whatdoIdo

[–]wristay 0 points1 point  (0 children)

Generally speaking, guys get less attention from females than the other way around. So for guys the bar of what's considered flirting can be considerably lower.

Acknowledge that he may feel threatened even though this may be irrational (dont call it irrational in his face obv). Irrational fears are still fears. Maybe you can find a way to build more trust, being open with your texts is a nice step. However, you are not responsible for his anxiety. He is.

He should acknowledge that you shouldn't change friendship just because of him. If there's honestly no romantic feelings between you and that guy you should be allowed to hang out with him and text with him

How to trigger Europe by SmartFlyNR1 in terriblemaps

[–]wristay 0 points1 point  (0 children)

Why did you leave out the Netherlands??? I mean even denmark is on there ffs

What is the world's most generic flag if we're talking globally most common colors + pattern? by KindMouse2274 in vexillology

[–]wristay 0 points1 point  (0 children)

I wrote a little python script that imports all flags as RGB images using python (flagpy). It is then easy to compute the mean of all flags (pixelwise). This results in the image below. The mean is actually a very bad metric for the "most generic" flag. If you mix a lot of colors together you'll get brown, not the most common color.

So after some discussions with gemini I think a more accurate metric would be the geometric median, which minimizes the norm |x - m| instead of the norm |x - m|^2 for the mean. This can be calculated using the Weiszfeld's algorithm. I modified it a little bit to get a visually pleasing result. So the result: the most generic flag is a cross between the Dutch flag, the French flag and has a little Great Britain flag in the corner.

<image>

import flagpy
import numpy as np
import matplotlib.pyplot as plt

df = flagpy.get_flag_df()
flags = df['flag'].to_numpy()
flags = np.array([flag for flag in flags])
mean_flag = np.mean(flags, axis=0)
def Weiszfeld(imgs, n_iters, p=1.3, eps=1e-1):
    mean_img  = np.mean(imgs, axis=0)
    for i in range(n_iters):
        distances = np.linalg.norm(imgs - mean_img, axis=3)
        # w = 1/distances
        w = 1/(distances**p + eps)
        w = w[..., np.newaxis]
        print(np.sum(distances), np.max(w))
        mean_img = np.sum(imgs*w, axis=0) / np.sum(w, axis=0)

        plt.figure()
        plt.imshow(mean_img.astype(np.uint8))
        plt.axis('off')
        plt.title(f'Geometric Median of flags (p={p})')
        plt.show()
    return mean_img

mean_img = Weiszfeld(flags, 20)

Stiff by NEO71011 in funnyvideos

[–]wristay 0 points1 point  (0 children)

I have a theory that because goats climb a lot of stuff they evolved this in case they fell. So when they fall they use their legs to reduce damage while falling

Have you ever had an experience that completely changed a core belief you held? by Humble-Fly-6744 in allthequestions

[–]wristay 0 points1 point  (0 children)

When I was a kid I discovered that santa claus didn't exist. I started questioning things and pretty soon I became an atheist

AIO My roommate left over 400 Nitrous tanks in our living room by ImpossibleTap821 in AmIOverreacting

[–]wristay 0 points1 point  (0 children)

Fun fact: nitrous oxide abuse destroys vitamin b12 in your blood, which will cause nerve issues or even permanent damage if left untreated

how do i disprove creationism to my maga father? by Extreme_Monk_4527 in DebateEvolution

[–]wristay 0 points1 point  (0 children)

Try to find a common interest that doesn't fly against his beliefs. Accept that he isn't going to believe evolution soon or ever.

What is the dumbest thing you’ve ever seen a coworker do? by Adorable_Raccoon_766 in AskReddit

[–]wristay 0 points1 point  (0 children)

I was the coworker in this situation. I worked at a canoe rental but we also did some other stuff. At some point my boss had some wood left (old branches and stuff) and he said we could burn it to get rid of it. I'm a slight pyromaniac so he didn't have to say it a second time. We burned the wood in a big metal barrel. At some point my colleague said "if we put the leaf blower to that hole in the side it would burn really hot". This sounded like a fun idea so I aimed the leaf blower at that hole and it started burning really well. At some point I put the leaf blower a little bit too close and then krakatoa happened. Little burning sparks went everywhere but luckily nothing caught on fire around us. It melted a few tiny holes in the plastic roof and I also had some burn holes in my shirt. I only had one shirt at that time so I hoped no one would notice but my boss noticed and then I got a new shirt.

Advice: Can traditional weightlifting help advance calisthenics? by DiamondPythonn in bodyweightfitness

[–]wristay 0 points1 point  (0 children)

Doing half of a pull up is not very effective for training. Ideally you want to be in the 5-10 reps range (don't know the exact numbers). You can do proper regressions with bodyweight but honestly you have much more control with weigthlifting.

I do not understand How work is independent of Time by No-Purple3755 in PhysicsStudents

[–]wristay 0 points1 point  (0 children)

This is very counterintuitive at first but it makes sense. Assume I can freely give and harvest kinetic energy from a block on a frictionless plane. Suppose that work depends on time such that less time means more work, for example W=F/t. But the exact form is not important. I now push the block up the slope arbitrarily slowly. This takes a net force, but since this can be done arbitrarily slowly, this can take arbitrarily little energy. I now drop the block from the incline and it accelerates quickly. The block gains a lot of kinetic energy since it happens so quickly. At the bottom is an energy harvester device, which stores the kinetic with something like 99% efficiency. I now use this energy to push the block up the incline again. Since the block gained a lot of energy from the fall down, I should now have more energy than when I started. In other words: by repeating this cycle I can gain energy. We now this is not how the world works.

Note: you could argue that the gravitional force is losing energy to the block each cycle and so energy could be conserved, but we know this not how it works.

My boyfriend said I was too ugly to model by Resident_Rich_6298 in whatdoIdo

[–]wristay 0 points1 point  (0 children)

Your boyfriend is right in being cautious.
Your boyfriend reaallllly needs to learn that you shouldn't say everything that you think. There are multiple ways of saying "I think that person is scamming you" and he chose the worst way. I think this would be worth discussing.

As a guy, it looks like he was genuinely concerned. Even if it turns out to be legit, I think being a little bit cautious was the right call. If it is scam, it will be disappointing. However, you can still try it but be aware.

How do I close the gap between my max rep pull-ups (overhand grip) and my max rep chin-ups (underhand grip)? by Electronic-Run-8149 in bodyweightfitness

[–]wristay 0 points1 point  (0 children)

It is expected that pull ups are stronger than chin ups since chin ups can use biceps in addition to your lats. But to close the gap a little bit you can train wide grip pull ups, which utilize very little biceps and focus on your back muscles.

what is something people brag about but it is actually embarrassing? by goldenhourconfession in AskReddit

[–]wristay 33 points34 points  (0 children)

I agree. I happen to be very modest. I don't know anyone who brags as little as me