Spyke

[Unsolved] Magic squares and their Inverse

cross-posted from: https://sopuli.xyz/post/22688165

Random thought on magic squares:

If I view the smallest possible non-trivial magic square

2 7 6
9 5 1
4 3 8

since its rows and diagnoals sum up to 2+5+8 = 2+7+6 = 4+5+6 = 2+9+4 = … = 15

Lets view it as a 3x3 Matrix, its determinant is Δ = -360 . Its inverse:

-37/360 19/180 23/360
17/90 1/45 -13/90
-7/360 -11/180 53/360

note how this is a magic square, rows and diagonals sum up to 1/15.

https://matrix.reshish.com/inverse.php

Now if you are really bored (I can not do this): proof that for any non trivial magic squares the inverse …

  • exists (i.e. every non-trivial magic square has an inverse)
  • is a magic square.
[Unsolved] Magic squares and their Inversehttps://en.wikipedia.org/wiki/Magic_squareOpen linkView original on sopuli.xyz
dailymaths·Daily Maths Challengesbyjoelthelion

[solved] A tale of two rabbits

I have ten meters of mesh fence. I want to make two enclosures for my rabbits who can't stand each other (they can share a wall). What is the shape and the area of the largest enclosure (in terms of area) I can build? Each rabbit needs to have access to the same area. The shape can be arbitrary (although it would be nice if it were continuous or smooth to some extent, and each area contiguous).

Examples:

A square of 2x2m, divided by a 2m wall. Area: 4 square meters

A circle of radius 1.21m, divided by a wall. Area: ~4.58 square meters.

Is it possible to do better?

View original on lemmy.world
dailymaths·Daily Maths Challengesbysiriusmart

[2025/01/15] Twice derivative of function

Question

  • Find the function f such that f'' = -f
  • Show that the function can be written in format f = A sin(x + B)

Extension

Find a function g such that g'' = C * -g and

  • g(0) = D
  • g'(0) = 0 where C and D are arbitrary constants.

::: spoiler For those who have finished the extension Congratulations, you have just derived the formula for objects in simple harmonic motions (physics). :::

View original on lemmy.world
dailymaths·Daily Maths Challengesbyzkfcfbzr

Coin-flipping game

We're playing a game. I flip a coin. If it lands on Tails, I flip it again. If it lands on Heads, the game ends.

You win if the game ends on an even turn, and lose otherwise.

Define the following events:

A: You win the game

B: The game goes on for at least 4 turns

C: The game goes on for at least 5 turns

What are P(A), P(B), and P(C)? Are A and B independent? How about A and C?

View original on lemmy.world
dailymaths·Daily Maths Challengesbyzkfcfbzr

Bounding a function

Consider the function defined by y = x^(sin(x)^sin(x)). Observe its graph. Find an increasing function which passes through each of its local maximums, and another increasing function which passes through each of its local minimums.

Extra credit: You'll notice the graph isn't drawn for x-values which make sin(x) negative. This is because most of those values make the function undefined - though it is defined for infinitely many points in those intervals, it just also has infinitely many holes. Since it lacks continuity here, it has no true local maxes or local mins, and doesn't impact the original problem. We can nonetheless cheat and fill in the holes by expanding the function to these regions with y = x^|sin(x)|^sin(x) (Using x^-|sin(x)|^sin(x) should also be technically valid, but is being ignored because it's discontinuous with the rest of the graph and not as pretty, but will be mentioned in my solution). Doing so adds more local maxes and local mins. The new local mins should line up with your function that finds the local maxes for the original function - but, find a new function which hits all of the new local maxes.

View original on lemmy.world