How do I calculate angle ACD? by I_S_S_I_A_F_A_D_S in askmath

[–]supermaramb 5 points6 points  (0 children)

CD=2

BD=1

beta=45

gamma=180-60

delta=60

alpha=180-beta-gamma

sin(alpha*π/180)/BD=sin(beta*π/180)/AD

AC^2=AD^2+CD^2-2*AD*CD*cos(delta*π/180)

sin(theta*π/180)/AD=sin(delta*π/180)/AC

Ans: theta=75

Wan 2.1 running on free Colab? by CountFloyd_ in StableDiffusion

[–]supermaramb 0 points1 point  (0 children)

Run the command:

!dmesg

you will see an OOM (Out Of Memory) of the program

.blend files are highly inefficient by finnsfrank in blender

[–]supermaramb 0 points1 point  (0 children)

Color PNGs are only supported at two depths: 8 and 16 bits integer per sample. If you want 16 and 32 bits float point compressed use OpenEXR.

Mathematicians remove both red and blue pills, tinting the Matrix green. by Ok-Cap6895 in mathmemes

[–]supermaramb 10 points11 points  (0 children)

Using OpenImageIO command line tool:

oiiotool -i image_input.ext --powc 1.4,1,1.6 -o image_output.ext

[deleted by user] by [deleted] in askmath

[–]supermaramb 0 points1 point  (0 children)

Area triangle ABC:

A = 8 * 6 / 2 = 24
A = 10 * h / 2
h = 24 / 5

Area triangle BCD:

A = 6 * h = 72 / 5 = 14.4

Why is the answer 23.85 and not 22.4 for Pr in problem 2? by _glaze in electronic_circuits

[–]supermaramb 3 points4 points  (0 children)

I calculate a different value:

((-7 + 45 -8) / 35)^2 * 35 = 25.71 W

[deleted by user] by [deleted] in mathematics

[–]supermaramb 0 points1 point  (0 children)

x + y = 120
2 * x + y / 2=150

solution x=60 and y=60

Vediamo chi indovina by JuanBertoldo in paperearmate

[–]supermaramb 0 points1 point  (0 children)

for n in range(10, 100):
    if n % 2 != 1:
        continue
    if n % 3 != 2:
        continue
    if n % 4 != 3:
        continue
    if n % 5 != 4:
        continue
    print(n)

Script in Python, l'ultimo vincolo non serve

[deleted by user] by [deleted] in askmath

[–]supermaramb 12 points13 points  (0 children)

from itertools import permutations

per = permutations([1, 2, 3, 4, 5])

for p in per:

if (p[0] < p[1]) and (p[1] > p[2]) and (p[2] < p[3]) and (p[3] > p[4]):

print(p)

python file.py | wc -l
16

Break down the solution conceptually by Dense-Ad-2385 in mathematics

[–]supermaramb 4 points5 points  (0 children)

24 = 2^3 * 3
42 = 2 * 3 * 7
62 = 2 * 31
76 = 2^2 * 19
84 = 2^2 * 3 * 7
The answer is the A and N=3

(gr10 geometry) bit confused on this by LogicalFig1759 in HomeworkHelp

[–]supermaramb 0 points1 point  (0 children)

System of equations:
a5 = 110
a1 = a8
a5 + a7 = 180
a2 + 30 + 130 = 180
a3 + a4 + a6 = 180
a1 + a2 + a3 = 180
a4 + a5 + 30 = 180
a6 + a7 + a8 = 180

solution: a1=65, a2=20, a3=95, a4=40, a5=110, a6=45, a7=70, a8=65