#help-0

1 messages · Page 521 of 1

sharp iris
#

we reduce the system

#

then can we solve it using the method ?

#

or no

vale wigeon
#

no bc the method requires the determinant of A to not be zero...

#

because det(A) goes in the denominator of everything

sharp iris
#

what about this example

#

wait

#

Solve the following real systems using Cramer's method.

(S2):
2x+3y=3
x- 2y=5
3x+2y=7

#

what should i do here

#

A is not square

#

can i reduce it

vale wigeon
#

pick 2 equations, solve those with Cramer, check solution against the third

sharp iris
#

okay

#

what about this x- 2y+z+t=1
x -2y+z -t= 1
x -2y+z+5t=5

vale wigeon
#

but it is also under-determined

sharp iris
#

no i forgot the -

vale wigeon
#

the system is under-determined

#

it is not possible to solve this with cramer at all, not even shoehorned like last time

sharp iris
#

okay

#

i saw a teacher that reduced an unknowns

#

and use it as a parameter

vale wigeon
#

are you under a legal requirement to use cramer and only cramer

sharp iris
#

yes

vale wigeon
#

then you are cooked.

sharp iris
#

what should i do

vale wigeon
#

talk to whoever is imposing this requirement

#

ask them if you are expected to comply with it and if so how

sharp iris
#

alright

#

thnx !

lone heartBOT
#

@sharp iris Has your question been resolved?

lone heartBOT
#
Channel closed

Closed due to timeout

Use .reopen if this was a mistake.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

next stratus
#

so for this question i just assumed a=d, and b=-c and i got (c) b,d are non parallel, but I'm pretty sure that isn't the right way to solve

next stratus
#

can anyone tell me how to check each part

soft trench
#

so

#

cross product of a- x b- gives ab sin alpha

next stratus
#

oh so alpha must be 90?

soft trench
#

yes

#

the angle b/w the cross product is 90

#

degrees

#

similarly the cross product b/w c and d gives sin beta

#

you can think the dot product b/w them as (a x b) (c x d) cos gamma

next stratus
#

ah so gamma is 0

soft trench
#

where
γ
is the angle between the vectors
a x b and c x d

soft trench
#

then Given that this dot product equals 1, we have:
sin(α)sin(β)cos(γ)=1

#

sin alpha is 90

#

beta is 90

#

cos gamma is 0

#

yes

#

hence they are parallel

#

got it?

next stratus
lone heartBOT
#

@next stratus Has your question been resolved?

lone heartBOT
#

@next stratus Has your question been resolved?

lone heartBOT
#
Channel closed

Closed due to timeout

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

vestal talon
#

I need help with some of my code - the issue is math based though something with my algorithm is messed up Im trying to calculate the change in volume of a body of water on a per year basis

vestal talon
#

the main issue is that after like 10 years the volume hits a minimum or maximum and changing the variables doesnt fix the issue

remote heron
#

what do you mean code

vestal talon
#

These are the relevant variables

vestal talon
#

I think maybe the issue is with my inflow calculation

remote heron
#

code thonkzoom

vestal talon
#
Sub CalculateInflow()
    Dim InflowEstimate As Double
    Dim rainfallFeet As Double
    Select Case True
        Case IsEmpty(Range("I9").Value)
            MsgBox "Rainfall is Empty Please Input Data and Run Again"
            Exit Sub
        Case IsEmpty(Range("I11").Value)
            MsgBox "Runoff Coefficient is Empty Please Input Data and Run Again."
            Exit Sub
        Case IsEmpty(Range("I14").Value)
            MsgBox "Watershed Area is Empty Please Input Data and Run Again."
            Exit Sub
    End Select
    
    rainfallFeet = Range("I9").Value / 12
    InflowEstimate = rainfallFeet * Range("I14").Value * Range("I11").Value
    Worksheets("Data").Range("O9").Value = InflowEstimate
End Sub```
#
    InflowEstimate = rainfallFeet * Range("I14").Value * Range("I11").Value
    Worksheets("Data").Range("O9").Value = InflowEstimate```
remote heron
#

wtf kind of cursed language

vestal talon
#

Visual Basic bruh its ancient

vestal talon
#

so the calculation seen here is

Rainfall Conversion to Feet
rainfallFeet = Rainfall(inches) / 12
InflowEstimate = rainFallFeet * Watershed Area (Acres) * runoff coefficient

remote heron
#

please tell me this comes from a written problem we can refer to

vestal talon
#

haha

remote heron
#

then why did you choose visual basic

vestal talon
#

Well for my excel / Visual Basic Class of course!

#

this is part of my final project

#

this is pretty much the last part of my project is fixing whatever issue im having here

#

I dont have the mind for math

remote heron
#

I'm not suer its possible to help you given what youve posted-

#

at the very least youre missing lables on cells

vestal talon
#
        Call CalculateRecharge

        recharge = ws.Range("O10").Value
        outflowLoss = currentVolume - (ws.Range("I13").Value * currentVolume)
        currentVolume = currentVolume + recharge - outflowLoss
        xVals(yearCounter) = startYear + yearCounter
        yVals(yearCounter) = currentVolume
        If numYears <= 10 Then
            myValue = MsgBox("Would you like to update the input variables for Year " & (startYear + yearCounter) & "?", vbYesNo)
            If myValue = vbYes Then
                startPage.Show
            End If
        End If
    Next yearCounter
    ```

Or the issue is in here
vestal talon
#

which cells I mean

remote heron
#

i mean you have inputs label in the code

#

assuming those are from something in the image

#

not being able to understand very much of whats going on

#

have you tried checking the dimensions of all of your variables?

vestal talon
remote heron
#

"I13" presumably

vestal talon
#

The named inputs are calculated in the code I posted

remote heron
#

"I11"

#

"I9"

vestal talon
remote heron
#

but the image isnt labelled

vestal talon
#

I11 is Column I Row 11

remote heron
vestal talon
#

oh my bad ofc

remote heron
#

but

vestal talon
#

as you can see in my chart down there I max out

remote heron
#

my advice is still to check the units

#

do you know how to do that

#

or have you done it

vestal talon
#

Explain slightly further

#

I can see the values of everything every time theyre calculated if I so chose

remote heron
#

so everything in that sum should be a volume

#

recharge must be a volume. outflowloss must be a volume.

vestal talon
#

Yes they're all standardized to acrefeet

#

and the current volume is also acrefeet

#

The main confusion im having is that the value lands on a specific value and does not change

remote heron
#

maybe its supposed to

vestal talon
#

It may well do but im not versed enough to check that properly

remote heron
#

its common

vestal talon
#

hmmm

remote heron
#

i mean, its common for some equation or system or model to behave interestingly in some small region

#

and not very interestingly globally

#

so it just depends on the model

#

itd help if you had some more uhh

#

idk

#

its hard to help with the visual basic haha

vestal talon
#

well just a sec ill try something

remote heron
#

it looks like an ODE problem im just having trouble reading it

#

you know if you had something like uhh

#

V' = - A * e where V is volume and A is area and e is some evaporation rate volume / area

#

youd expect something like that to eventually come into equillibrium

vestal talon
#

So the issue may be consolidated to my variable values

#

Which I can only estimate so hard and I cant easily have changing with every year while remaining accurate without a level of research I simply dont have time for

#

ive been altering the inputs to try and get the graph to slowly run out to zero

#

but ive been unsuccessful so far

remote heron
#

i wish you could change the model

#

sorry

#

share the model

vestal talon
#

Its not a very slow slope either its a drastic change

remote heron
#

it looks exponential

#

which is normal

#

if you have a first order system

vestal talon
#

yes its certainely exponential

#

I can tell that from setting my runoff coefficient very low

remote heron
#

change in volume = (some function of volume and time)

#

this will probably result in some kind of exponential decay

#

unless its non linear or something strange

vestal talon
#

I think you found the entire crux of my issue

#

I think that the reservoir im simulating must not be at any sort of drought risk

remote heron
#

well maybe it is for some parameter values

#

if we can extract the model we can do dynamic analysis of it

vestal talon
#

and thus if I simulate this for an extended period using the same variables for water input and output then it always reaches an equilibrium sooner than anticipated

#

I also have the capacity to simulate an aquifer

remote heron
#

im guessing its basically a tank problem

vestal talon
#

oh ive got it all messed up now I think

remote heron
#

idk if youve taken ode

#

they really only have like a handful of kinds of behavior

vestal talon
#

I have certainely messed something up

#

this was okay a bit ago

remote heron
#

this is just exponential decay in the other direction

vestal talon
#

okay i reigned the nonsense in a bit

#

They both seem to be moderately working now

vestal talon
#

thought the reservoir cannot handle a bulk calculation without varying variables between years

#

youre completely right though this is designed like a tank problem

#

I think a cube shaped tank

#

I think its in an okay shape now were gonna run with it thank you niku I have too much else to mess with right now to dwell

#

!close

#

.close

lone heartBOT
#
Channel closed

Closed by @vestal talon

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

strange rampart
#

hello

lone heartBOT
strange rampart
#

is someone good at dilation (transformation) in part 1 given says that h(D) = E but when finding h(DG) the solution is line (BC) but i still dont understand why

vale wigeon
#

h(line DG) = line BC

#

rather than segments

strange rampart
#

so if we were talking segments it would be [EF] or something ?

#

so even if h(D)= E that doesnt necessarily mean that H(DG) = (E..)

vale wigeon
#

i mean the thing is

#

"line EF" and "line BC" describe the same straight line

strange rampart
#

i guess so..

#

alright thanks ;D vm

#

.close

lone heartBOT
#
Channel closed

Closed by @strange rampart

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

devout helm
#

Hi I feel that there’s something wrong with this

velvet briar
devout helm
velvet briar
#

[(5x+y)+1][(5x+y)+1]

#

to make it more obvious

#

let 5x+y = a

#

(a+1)^2 =/= a^2+1^2

devout helm
#

whats =/=

velvet briar
#

not equal

devout helm
velvet briar
winter light
#

$$(A + B)^2 \text{ is } \textbf{NOT } A^2 + B^2$$

#

@devout helm

velvet briar
ocean sealBOT
#

Alberto Z.

vale wigeon
#

$(A+B)^2$ is \textbf{NOT} $A^2 + B^2$

ocean sealBOT
winter light
#

Yeah I know it

#

But I didn't want to rewrite it lol

#

I also hate it to write \text a lot of useless times

devout helm
winter light
#

Have you ever seen $(A+B)^2 = A^2 + 2AB + B^2$?

ocean sealBOT
#

Alberto Z.

velvet briar
devout helm
#

a is 5x+y

#

b is 1

#

right?

winter light
#

That's one choice, yes

devout helm
devout helm
winter light
#

Mmh weird

devout helm
#

.close

lone heartBOT
#
Channel closed

Closed by @devout helm

Use .reopen if this was a mistake.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

alpine sable
lone heartBOT
zealous wolf
#

Do you know conditions for common roots?

alpine sable
#

nope

zealous wolf
#

Hmm wait

#

This is the condition for one common root

vale wigeon
zealous wolf
#

You want proof? I can attach that asw

vale wigeon
#

why not simply subtract the two equations and note that their common root will be a root of the new one?

#

much easier this way and like 200 times more straightforward

#

no need for this absurdly complicated formula

#

no i don't want proof of that formula

zealous wolf
#

I am not familiar with your method i apologise

vale wigeon
#

it is barely even a method, it is just almost a natural consequence of the concept of a "common root"

zealous wolf
#

I get it im just too used to using cramers rule for these stuff

alpine sable
#

i got ax-bx + bc-ca = 0 after subtracting

vale wigeon
#

ok so that's (a-b)x + c(b-a) = 0

#

you know that a ≠ b otherwise the two equations would have been literally the same

#

so you know their common root can only be c

alpine sable
#

woah

#

ok

#

.close

lone heartBOT
#
Channel closed

Closed by @copper dragon

Use .reopen if this was a mistake.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

devout helm
#

are these correct?

lone heartBOT
void nymph
#

first isnt

shell agate
#

You need to substitute another variable right

void nymph
#

second isnt even factorised

shell agate
#

I don't see your substitution

void nymph
#

so no

shell agate
#

@devout helm substitute with another variable

#

Hint: Try to make it quadratic by substitution

devout helm
shell agate
#

like

#

How can you make a) quadratic

devout helm
shell agate
#

How?

devout helm
shell agate
#

Like

#

x^2=y

devout helm
#

so that means the first qn is x^4 + x^2 =6?

shell agate
#

I didn't see the step

#

He should have gotten answer 2 then

shell agate
#

It will be quadratic which you can solve

devout helm
shell agate
#

You replace x^2 with y

gray isle
#

with the idea you had for a), the substitution isn't really needed
you made the mistake in finding your pair of values

shell agate
#

He didn't substitute for 1st Q so got 2nd wrong

shell agate
devout helm
shell agate
#

ax^2+bx+c

#

x^2+x-6=0

devout helm
shell agate
#

uh this was an example

#

anyways

#

Put x^2=y

devout helm
shell agate
#

Helping you to understand how to replace

#

Because you did not solve 2nd question

#

You know how to solve a quadratic so you could solve if you convert 2nd question to quadratic form

void nymph
#

with the idea you had for a), the substitution isn't really needed
you made the mistake in finding your pair of values

void nymph
#

and b) you didnt factorise

devout helm
#

let me get this straight, for part a, we dont have to substitute anything right?

gray isle
#

technically you don't "have to" for either
but it does help with the process if you can't recognise you have a hidden/disguised quadratic

devout helm
desert raptor
gray isle
#

depending on how comfortable you are in recognising the hidden,
sub is just extra lines of unnecesary work

gray isle
#

try applying the same idea for b)
for a), you had (x^2)^2, x^2
for b) you have (x+3)^2, (x+3)

#

the approach to the factorisation is similar,
the numbers you'd want to focus on are
a=2, b=-5, c=-12

lone heartBOT
#

@devout helm Has your question been resolved?

lone heartBOT
#
Channel closed

Closed due to timeout

Use .reopen if this was a mistake.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

marble knot
#

Can someone explain how you substitute and simplify this to get the equation shown.

ocean sealBOT
#

@zinc bolt

marble knot
#

When I substitute y I get this

#

So how do I get from:
(x - a)² + (-x/a + 1)² = d²,
to:
(x - a)² * (1 + 1/a²) = d²

zinc bolt
#

,rccw

ocean sealBOT
#

@zinc bolt

marble knot
zinc bolt
#

!done

lone heartBOT
#

If you are done with this channel, please mark your problem as solved by typing .close

marble knot
#

.close

lone heartBOT
#
Channel closed

Closed by @marble knot

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

flat vector
#

how do i find the perimeter of a circle

lone heartBOT
flat vector
#

how do i find the perimeter of a circle

unique dune
#

2pi r

#

???

winter light
flat vector
vale wigeon
#

no, we do not have a bot

#

!vol

lone heartBOT
#

Helpers are just people volunteering their time to help you. Be polite and patient.

vale wigeon
#

emphasis on helpers being PEOPLE not bots.

#

@flat vector if you want to get help from a bot, this is not the place.

flat vector
#

i js dont know what to do

royal star
#

Type .close if you don’t have a question

vale wigeon
#

@tight pier why the ⚠️ react?

vale wigeon
flat vector
#

.close

lone heartBOT
#
Channel closed

Closed by @flat vector

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

fervent seal
lone heartBOT
fervent seal
#

I have tried factorizing a x^pi and then having there a remarcable limit, but i couldn't continue

#

I'm talking about lim sin(x)/x = 1 when x->0

near steeple
#

Try using taylor series to expand sinx

#

x^pi term will cancel out

#

x^(pi+2) will be all the matters

fervent seal
#

the thing is that i haven't yet learned taylor series

near steeple
#

Oh

#

Just look it up it’s pretty simple

fervent seal
#

i will look into it

north rover
# fervent seal

I mean, I guess you can try to split the fraction and consider the sinc limit.

#

Let me try it out.

#

Oh yeah, it works perfectly fine

#

I see no need for a Taylor Series.

fervent seal
#

could you please send me the way you solved it?

#

i got what you said but when i split it in two i get 1/x^2 - 1/x^2

north rover
#

Yeah

#

Maybe I fucked it up

fervent seal
#

the answer should be pi/6

north rover
#

I don’t think you can really split it here...

#

The best I could think of was L’Hopital’s but it doesn’t work too nicely

fervent seal
#

yeah it's a lot of work with l'hopital

north rover
#

Could there maybe be a way to subsitute something nicer to deal with (not pi in the exponent)?

fervent seal
#

yeah i took into consideration a substitution, but haven't found it

north rover
#

Do you have WA Pro?

#

I’m lowkey confused now

fervent seal
#

no, i don't have it

#

it doesn't even show any steps or anything

#

just the result

north rover
#

Yeah

fervent seal
#

<@&286206848099549185>

olive garden
#

To get pi/6 I feel l hospital is the best way

#

Nah don’t do l hospital

#

Did you try using series expansions ?

fervent seal
#

i haven't learnt that either

wary fable
fervent seal
#

everything

#

but the thing is this is from an exam for admission at univeristy

#

and i'm trying to work with what i learned till now, i don't really have time to learn new things right now

wary fable
#

consider taylor expansion for sin(x)/x @fervent seal

lone heartBOT
#

@fervent seal Has your question been resolved?

lone heartBOT
#

@fervent seal Has your question been resolved?

fervent seal
#

.close

lone heartBOT
#
Channel closed

Closed by @fervent seal

Use .reopen if this was a mistake.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

carmine topaz
#

i have no idea what part c is doing and i dont get the solution either

dusty grove
#

How do I separate square roots

#

Opps

#

Srry

buoyant saddle
#

but p(h) was only valid for 0 <= h <= 30

#

and they tell you it’s modeled instead by f(h) for h >= 30 at the top of the page

#

but we can’t find f(h) explicitly so they just ask you to give an upper bound on the amount of plankton in the vertical column

carmine topaz
#

but why the 3 infront of 105?

#

and the integrals

buoyant saddle
#

same reason from before

carmine topaz
#

area = 3?

buoyant saddle
#

it’s the area element for any given height

#

yea

carmine topaz
#

but like how would i know this?

buoyant saddle
#

they tell you

#

wdym

carmine topaz
#

but like all three integrals was *3 i wouldnt know they will all have same area

buoyant saddle
#

they told you it was constant

#

throughout the vertical column

carmine topaz
#

ok

#

so we js gotta show that the the one from b + 3*int 30 to K f(h) will be less than 2000 mil right

carmine topaz
#

and that 3 * int 30 to K f(h) is less 3 * int 30 to inf u(h)

buoyant saddle
#

mhm

carmine topaz
#

they could have said it in easier way but decided to write like shakespeare

#

anyways thanks for helping 😀

buoyant saddle
#

lol

carmine topaz
#

.close

lone heartBOT
#
Channel closed

Closed by @carmine topaz

Use .reopen if this was a mistake.

buoyant saddle
#

you’re welcome

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

carmine topaz
#

i dont get why it plugs x=1 in part d like nowhere did it talked about G(x) = 50 when x=1

kind trellis
#

when G(x) = 50

#

then 100x/(1+x) = 50

#

thus x = 1

carmine topaz
#

wait so i have to plug in to know that not that i was given that info?

grave matrix
#

That's what the => means, yeah

kind trellis
#

Yes, it says at the top of the last picture

carmine topaz
#

the last picture is solution

#

ok lol

#

thanks yall!

#

.close

lone heartBOT
#
Channel closed

Closed by @carmine topaz

Use .reopen if this was a mistake.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

warm drift
#

@everyone

lone heartBOT
#

@warm drift Has your question been resolved?

proper tangle
#

.close

lone heartBOT
#
Channel closed

Closed by @proper tangle

Use .reopen if this was a mistake.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

floral whale
#

i dont get how to do part c

lone heartBOT
floral whale
#

it says im meant to differentiate this but when i do i get the wrong asnwer

remote heron
#

what answer do you get?

ocean sealBOT
#

jan Niku

floral whale
#

32.8

#

am i meant to times the differentiated value by -0.05 then substitute 50 as t?

remote heron
#

yea

floral whale
#

yeah i dont know why id do that

remote heron
#

but it doesnt make sens you get a positive number

remote heron
ocean sealBOT
#

jan Niku

floral whale
#

but why would i times the value by -0.05

#

i dont get that bit

remote heron
#

because youre diffe0rentiating

floral whale
#

oh my god yeah i forgot about the euler rules

#

ty

#

.close

lone heartBOT
#
Channel closed

Closed by @floral whale

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

alpine sable
#

couple of doubts

  1. elements of AxA ( cross product on a set) if A is an empty set
  2. if a relation is transitive and symmetric , then its reflexive too right ? ( if the sets are non empty)
  3. for empty sets , why is it not ? why is it transitive and symmetric but not reflexive ?
modern sedge
#

cross product on a set
Do you mean the cartesian product?

#

cartesian product of empty set with anything is empty

alpine sable
#

yes sorry

modern sedge
#

A x B includes all pairs (a, b) with a in A and b in B. So if A is empty, then there is no a in A, and so no pairs (a, b) that could be in A x B

alpine sable
modern sedge
#

always refer to the definitions

alpine sable
#

2^0 = 1 element ?( 2^mn , m,n=0 ; no of relations of set)

#

i though that 1 element is null

modern sedge
#

you might be confusing it with something else

#

P(A) has 2^|A| elements

alpine sable
modern sedge
zinc bolt
#

!nogpt

lone heartBOT
#

Please do not trust ChatGPT or similar AI tools for mathematical tasks, as they often generate output which "sounds correct" but has numerous factual or logical errors. Use of these AI tools to answer other people's help questions is strictly against server rules (see #rules).

alpine sable
modern sedge
zinc bolt
modern sedge
#

the set of all subsets of A x B is P(A x B)

alpine sable
modern sedge
alpine sable
#

no of relations is indeed 2^mn

modern sedge
#

and the caardinality of that set would be:
|P(A x B)| = 2^|A x B| = 2^(|A| * |B|)

alpine sable
#

then if two empty sets

#

then that would be 2^0=1 right

modern sedge
#

yes, 1 relation

#

the empty one

#

the only subset of A x B = empty set

alpine sable
#

ok

#

so null elemtn only exists in the powerset to represent it ?

modern sedge
modern sedge
#

or disproving it

alpine sable
alpine sable
#

ill ig

modern sedge
#

you dont need to, have you thought about it tho? Have you tried proving it at least in your head?

#

or disproving it

#

consider the empty relation e.g.

#

it's certainly not reflexive

alpine sable
#

for non empty sets
transitive and symmetric relations
(a,b) exists , then (b,a) should also exist ( symmetric)
as it is transitive (a,a) and (b,b) also exists

modern sedge
#

is it transitive? Is it symmetric?

modern sedge
#

unless (a, b) is in the relation, (b, a) is not there

#

so you cant really use transitivity

alpine sable
#

what 😭

#

i didnt understand sorry

modern sedge
#

consider the empty relation

#

is it symmetric?

alpine sable
#

yes

modern sedge
#

is it transitive?

alpine sable
#

yes

modern sedge
#

and reflexive?

#

(assuming it's relation on some non-empty A)

alpine sable
#

idk , yes ig ? cuz reflexive says if a exists , then (a,a) should exists right ? eh , but a doesnt exist

alpine sable
alpine sable
#

empty relation on non empty A?

modern sedge
#

okay, i think you're confused on what a relation is

#

we can have a set A = {1, 2, 3}

#

no relation on A is any set of ordered pairs with elements only from A

#

so e.g.
{(1, 1)} is a relation

#

{(1, 3), (2, 1)} is also a relation

#

{} is also a relation (the empty one btw)

#

but {(1, 4)} isn't a relation on A

alpine sable
#

yea ik

modern sedge
#

and it's not reflexive

alpine sable
#

why

#

how is reflexive defined

#

could you make it clear for me

modern sedge
#

if it were to be reflexive, it would have to contain (1, 1), (2, 2) and (3, 3)

modern sedge
#

so e.g. relation on {1, 2} is reflexive iff it contains (1, 1) and (2, 2)

#

relation on {} is always reflexive

#

relation on {a, b, c, d} is reflexive iff it contains (a, a), (b, b), (c, c), (d, d)

modern sedge
#

because none contains all of (1, 1), (2, 2), (3, 3)

alpine sable
#

so an empty set isnt reflexive cuz it doesnt contain (a,a) for the elemtn in it , which is nothing ? ehhh , what

modern sedge
#

you cant decide whether a relation is reflexive unless you know what the "parent set" is

alpine sable
#

i just wanted to solve a small question 😭 ive diverted faaar away from my topic and running short on time lmao

modern sedge
#

if {} is a relation on A = {1, 2, 3}, then it's not reflexive (because it doesnt contain (1, 1), (2, 2) and (3, 3)

alpine sable
#

but ty tho

modern sedge
#

if {} is a relation on {}, then it is reflexive

alpine sable
#

you said it isnt

alpine sable
modern sedge
modern sedge
alpine sable
#

ahhh 🤕

modern sedge
alpine sable
#

now i get it

#

ty

modern sedge
#

np

#

oh and i guess i accidentally answered 3) as well

alpine sable
#

so if its on an empty set its an equivalnce relation

#

if its non empty sets and empty relation , then its not reflexive

alpine sable
#

but its symmetric and transitive

modern sedge
#

yes

alpine sable
#

tysm

#

.close

lone heartBOT
#
Channel closed

Closed by @tall rain

Use .reopen if this was a mistake.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

brisk oak
#

what does this mean? i dont understand

lone heartBOT
brisk oak
#

how is y a function of f what..

tacit arch
#

that could be a number of things

#

give the full context or look in the book's index

lethal belfry
brisk oak
#

The triple product rule, known variously as the cyclic chain rule, cyclic relation, cyclical rule or Euler's chain rule, is a formula which relates partial derivatives of three interdependent variables. The rule finds application in thermodynamics, where frequently three variables can be related by a function of the form f(x, y, z) = 0, so each...

#

i dont understand it tho

tacit arch
#

which line here do you get lost first

brisk oak
brisk oak
#

and if they differ its not a total differential

tacit arch
#

yea it's also called exact differential
https://en.wikipedia.org/wiki/Exact_differential

In multivariate calculus, a differential or differential form is said to be exact or perfect (exact differential), as contrasted with an inexact differential, if it is equal to the general differential

    d
    Q
  

{\displaystyle dQ}

for some differentiable function

    Q
  
...
brisk oak
#

this is confusing

#

how does it relate to the gradient theorem

tacit arch
#

you're leaving out too much context to answer

brisk oak
#

whatever ill come back if i struggle again

#

.close

lone heartBOT
#
Channel closed

Closed by @brisk oak

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

earnest lance
#

i have no clue where to starts on 43

lone heartBOT
bleak heath
#

what are the 50°and 96°??

#

angles of G and I?

earnest lance
bleak heath
#

oh ok

waxen flame
#

Pretty sure those are the arc measures of GJ and JI.

#

Look up the Inscribed Quadrilateral Theorem and Inscribed Angle Theorem.

bleak heath
#

so GKI would be 50+96?

waxen flame
bleak heath
#

and then we know that the angle subtended would be double of GHI at GKI

earnest lance
bleak heath
#

and as it is cyclic quadrilateral, GJI+GHI=180

#

angle made

earnest lance
#

k

earnest lance
bleak heath
#

it's a theorem

#

The angle subtended by an arc at the centre is double the angle subtended by it at any point on the remaining part of the circle.

earnest lance
#

so it would be 73?

lone heartBOT
#
Channel closed

Closed by @earnest lance

Use .reopen if this was a mistake.

bleak heath
lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

next stratus
#

how do i do this

lone heartBOT
next stratus
#

I let eqn of first circle be (x+3)^2+y^2=1

#

and other be (x-3)^2+y^2=1

#

and P(0,0)

#

let the point at which C and C1 touch be Q

#

using pythagorean theorem i found PQ=2sqrt(2)

north rover
#

Okay

patent vale
#

Okay

north rover
#

What did you let the center of C be?

next stratus
north rover
#

Mkay, so could you use the Pythagorean Theorem again?

#

To find the radius?

next stratus
#

sqrt(k^2-8)

north rover
#

Am I tweaking or can you extend the radius to the centers of C1 and C2

#

Then use similar triangles

#

Have you tried that yet?

next stratus
north rover
#

Yep, it definetely works

#

||1/(2sqrt(2))=2sqrt(2)/r|| so ||r=8||
Don’t look at this, this is my working

next stratus
#

yeah thanks a lot!

north rover
#

:D

next stratus
#

.close

lone heartBOT
#
Channel closed

Closed by @next stratus

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

#
Channel closed

Channel closed due to the original message being deleted.
If you did not intend to do this, please open a new help channel,
as this action is irreversible, and this channel may abruptly lock.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

silver plume
#

How do I find y intercept and a second point?

silver plume
#

plugging 0 for x did not work

#

oh nvm it wanted interval notation

buoyant saddle
#

y intercept is a point

buoyant saddle
silver plume
#

okay I see

#

.close

lone heartBOT
#
Channel closed

Closed by @silver plume

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

split whale
lone heartBOT
#

@split whale Has your question been resolved?

split whale
#

<@&286206848099549185>

split whale
#

<@&286206848099549185>

#

<@&286206848099549185>

#

bruh

modest robin
#

this is like a physics probkem?

modest robin
lone heartBOT
#

@split whale Has your question been resolved?

lone heartBOT
#
Channel closed

Closed due to timeout

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

plush flicker
lone heartBOT
plush flicker
#

I'm losing my mind over 19

#

how can I set it up

#

please

near steeple
#

man i dont really know how to do it with a double integral

#

But i can find the area without it, but that’s not the problem

#

i mean one way is to find the area of both regions seperately and substract the overlap region once

#

for that area we can setup a double integral

#

like area of r=sintheta is the double integral of dA i.e rdrdtheta

#

r=sin theta

plush flicker
#

yeah I know how to do that, but idk how to do it with a double integral either

ocean sealBOT
#

SuppaHotFreshFire

near steeple
#

The intersection area is very easily 1/4 cz they are orthogonal unit circles

#

does that work?

#

the final answer comes out to be pi/2 - 1/4

#

just verify it whenever you return @plush flicker i gtg for an examination rn

plush flicker
#

yeah thanks

#

.close

lone heartBOT
#
Channel closed

Closed by @plush flicker

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

foggy vector
lone heartBOT
foggy vector
#
  1. solve the following initial value problems specifying the domain of the function
#

solving 1) right now

#

AFAIK i need to find the particular and homogeneous solution

#

we know y' - 3y = 0

lone heartBOT
#

@foggy vector Has your question been resolved?

shadow fjord
foggy vector
shadow fjord
#

It is a separable differential equation.

#

you can write it as dy/dx = 3y

#

or dy/y = 3dx

foggy vector
#

yeah that much i understand

#

alright i'll work that out

foggy vector
shadow fjord
#

Good, except don't forget the constant of integration (+C).

foggy vector
#

ahh

#

always the C with me

#

nearly failed calc 1 due to that

shadow fjord
#

So you have ln|y| = 3x+C

foggy vector
#

yes

#

is that our hom solution

shadow fjord
#

You should simplify/solve for y.

foggy vector
shadow fjord
#

Yes. y = C_1e^{3x}.

foggy vector
#

ohh

#

no + -

#

cause C1 is real

shadow fjord
#

In any case it will be a constant, so you can drop the +-.

#

+-e^c is a constant I mean

foggy vector
#

yeah yeah

shadow fjord
#

Ok, do you know how to find the particular solution?

foggy vector
#

what i mean is it's any R number which can be positive or negative

#

honestly, no. i'm kind of skipping a bit of stuff here

shadow fjord
#

You have to guess the form of the solution. You'll have to practice and memorize forms of solutions, but in this case, since you have a e^{2x}, you will guess y_p = Ae^{2x}. Where A is a constant.

#

So basically you take derivatives, plug into the DE, and solve for A.

foggy vector
#

alright

#

is this similar to linear algebra

#

where you'd find a particular and hom solution

#

for the null space of a matrix?

shadow fjord
#

YES, it is exaclty like that!

#

very nice

foggy vector
#

interesting

foggy vector
#

no theorems to get there?

shadow fjord
#

There are a couple ways to do it, but the guessing method is a common one.

#

In fact, for a first order like this, you could use the integrating factor method.

#

That would give you the whole solution at once, actually.

foggy vector
#

okay i see that here in my notes uhhh

shadow fjord
#

Well, since you've started this method, you might as well finish it. Then you can try it again using integrating factor.

foggy vector
#

$\mathbb{S}_H = span{e^{-\int P(x) dx}}$

shadow fjord
#

That looks right.

ocean sealBOT
#

ransik (gmdn)

foggy vector
#

so wait i just "plug in" my function here and solve?

#

will this be my hom or particular solution

#

is P(x) y=Ce^3x or my initial function

heavy prairie
foggy vector
#

yeah i see it

#

let me save y'all the work

#

this looks fine

shadow fjord
#

Yes, that is the method

heavy prairie
#

im glad you brought this up i need to refresh on this stuff for my exam

foggy vector
#

yeah i have a calc 2 midterm in a week or so

#

i'm kind of cooked 💔

heavy prairie
#

i have one in 18 days but it is too soon, i will try to take it later i think

foggy vector
#

it's okay i always make it out in the end

heavy prairie
#

they host calc 2 every 2 months or so at my uni

foggy vector
heavy prairie
#

which is nice

foggy vector
#

the way it works here is you have two midterms

#

i guess they're not midterms

#

they're called partial exams

heavy prairie
#

oh i see, yeah so calc 2 is such a common course here they host it 4 or 5 times for the year

foggy vector
#

each semester you have a class right this semester i have math 2 (basically calc 2)
you have like 6-8 weeks of class and a partial exam
then 6-8 more weeks and another partial

#

your partials need to average into the passing grade

shadow fjord
# foggy vector i'm kind of cooked 💔

You seem to be doing fine. Just keep practicing, and remember on the test you can't use a computer to help. So at some point you should make sure you can do a problem and with nothing but a blank piece of paper work through the whole thing.

foggy vector
#

once you pass you qualify for the final

#

you can take the final 3 times

#

fail it and you retake the class

heavy prairie
#

nice, we get a sheet with 8 calc 2 related problems, full marks for a question scores you 5 points. you need 18 to pass, pretty generous tbh

foggy vector
#

you can only fail one partial exam. fail both you retake the class.

foggy vector
heavy prairie
#

we also had some turn-in assignments

foggy vector
#

i hammered out sequences in like a day

foggy vector
#

or at least not for math, chem, physics

#

actually physics does but it's only a bonus

heavy prairie
#

turn-ins weren't really graded, like you passed or you didn't

#

and for exam, you could get a passing, passing but without praise and passing with praise

foggy vector
#

exams are just graded /10

#

you pass with a 4/10 which seems bad but in reality either the exam requires 60% of the exam to be correct in order to get a 4

#

or the exam is structured in such a way that a 40/100 is deserving of a passing grade

heavy prairie
#

oh yeah i should have said

foggy vector
#

they're very stringent with corrections. most mistakes will nullify the entire exercise

heavy prairie
#

max point is 40

#

and you pass with 18

foggy vector
#

ah, i see

heavy prairie
#

so 18/40, that's not exactly 40% i think but

#

pretty much the same as yours

foggy vector
#

45%

heavy prairie
#

i scored a 12, but i forgot everything since the last time i took the exam

#

i wasn't learning to learn just cramming info and formulas

#

i didnt understand a single thing

#

how are you handling the convergence tests?

foggy vector
#

oh not great yet

#

yeah i'm

#

like i said i'm having a hard time

#

but it's okay i was able to get in most of linear alg in a week too

#

i might be fine

heavy prairie
#

i got in most of linear algebra over the course of 2 months, i do feel confident for when i take the exam

#

probably in june or august

#

i dont like the convergence tests

foggy vector
#

i'm just really bad at doing my work during the classes

#

so i end up cramming before the exams

heavy prairie
#

i just dont go to class

#

or lectures

#

but there are tutors in the evening at uni

#

and most people dont go so

#

i end up alone with a 3rd or 4rth year student

#

who is pretty strong at math

foggy vector
heavy prairie
#

yes that is awesome

foggy vector
#

sadly my uni is like a 40m drive away lol

heavy prairie
#

they are there from 17.15 - 19:00 every monday- thursday

foggy vector
#

1:30h with traffic

heavy prairie
#

should i watch House MD?

foggy vector
#

yeah it's a good show

#

great for putting on while studying

#

i like watching "dumb" shows whilst studying

#

think the office, house md, etc

#

stuff that doesn't require much attention

heavy prairie
#

i have only seen a couple of episodes

#

it looked interesting

#

he just gets weird cases over and over

#

and is very rude to people

foggy vector
#

yeah

#

that's the format

#

repeat for 8 seasons

#

it personally never got stale for me

heavy prairie
#

lmao

#

that puts a big smile on my face

foggy vector
#

give it a go

#

it's a good show

#

maybe slow in the first season

#

anyways. i gotta go

#

cheers mate

heavy prairie
#

have a good one

#

and good luck

foggy vector
#

thanks man, you too

#

.close

lone heartBOT
#
Channel closed

Closed by @foggy vector

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

alpine sable
#

hi! i was hoping to get some resources to help study/re learn highscool math ie: geometry and algebra and stats for a TABE math test

summer dirge
#

Khan Academy is generally cited as an excellent source for that material

lone heartBOT
#

@alpine sable Has your question been resolved?

lone heartBOT
#
Channel closed

Closed due to timeout

Use .reopen if this was a mistake.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

alpine sable
#

i got a thing for what i need to work on most

ornate ginkgo
#

Do you have a question

lone heartBOT
#

@alpine sable Has your question been resolved?

alpine sable
old sinew
#

A helper already suggested khan academy

#

Did you not try it?

lone heartBOT
#
Channel closed

Closed due to timeout

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

devout helm
#

I'm not sure on how to find qn 4c

lone heartBOT
twilit dome
#

at t=4-7 s velocity is constant no?

#

so just the slope of that line

devout helm
twilit dome
#

no, you dont have to differentiate, but finding the slope of a line is equivalent to calculating the derivative

twilit dome
#

gradient???

#

what does this have to do

#

this is single variable

devout helm
#

wdym by finding the slope of line

twilit dome
#

oh

#

yes, the gradient.

#

im not good at english

devout helm
#

formula for gradient is y1-y2/x1-x2 right?

twilit dome
#

yes

devout helm
#

so its 10-(-5)/4-7?

twilit dome
#

yes

devout helm
#

thanks

#

.close

lone heartBOT
#
Channel closed

Closed by @devout helm

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

royal harness
#

Uhhh... i9 and i10. What shall I do?

lone heartBOT
exotic canopy
#

,rccw

ocean sealBOT
exotic canopy
#

if you have two matrices in C their sum is also in C?

#

for i9

#

and their product is also in C foe i10

#

is that correct?

royal harness
# ocean seal

We consider the crowd C. Prove that, whatever X,Y belong to C, we have X+Y belong to C

#

I translated

exotic canopy
#

in english, what you referred to as "crowd" is called a "set" :)

royal harness
#

Oh, sorry

exotic canopy
royal harness
#

Ohhhh

exotic canopy
royal harness
exotic canopy
#

language nerd + i have some romanian friends

exotic canopy
#

almost

#

why y+y?

royal harness
exotic canopy
#

ah alright

exotic canopy
royal harness
#

OOOHHHHHH

#

NOW I GOT IT

#

x+y=a

#

And at i10, xy=a

exotic canopy
#

yes exactly!

royal harness
#

I'm so dumb that it was so easy to understand

#

🤣🤣

#

Thank you so much

#

.close

lone heartBOT
#
Channel closed

Closed by @royal harness

Use .reopen if this was a mistake.

#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

wet magnet
#

PART C

lone heartBOT
wet magnet
#

i try doing OB crossproduct with OD to obtain normal to BD

#

but it is not correct

lone heartBOT
#

@wet magnet Has your question been resolved?

wet magnet
#

<@&286206848099549185>

rustic coral
#

So you can just take the normal vector to be vector BD

#

Since you found the coordinates of B and D in (a)

wet magnet
#

?

#

parralell to BD

#

wdym

rustic coral
#

And the normal vector is perpendicular to the plane, and hence parallel to BD

wet magnet
#

oh yh the PLANE normal is parralell to BD

#

so its the same?

#

cuz BD is (-1, -1 , 1)

rustic coral
wet magnet
#

oh ok i get it now

#

but wait

#

why doesnt cross product work

#

which components would i need for that to work?

rustic coral
wet magnet
#

wait cross produc5t doesnt give normal

#

?

wet magnet
rustic coral
#

b/c then you’re taking a vector perpendicular to two vectors in the plane

#

Which will result in a vector that’s perpendicular to the plane itself

#

Aka the normal vector

wet magnet
#

but it doesnt work here?

rustic coral
#

That’s if you have two vectors in the plane tbh

wet magnet
#

but we got OB and OD they lie in the same plane

rustic coral
#

“the plane” as in the plane you want to find

#

Just draw the plane yourself

#

You should see that’s not the case

wet magnet
#

can you draw it, im still confused pls

rustic coral
#

No

#

I’m on my phone

wet magnet
#

ok what should i include in the plane

#

,rotate

ocean sealBOT
wet magnet
rustic coral
#

It’s a plane through O that cuts BD at a right angle

#

Idk what you’re drawing

wet magnet
#

it's a one dimension sketch but yeah might be a bit bad

#

You there still?

#

@rustic coral you still there ?

#

bro pls help

#

.close

lone heartBOT
#
Channel closed

Closed by @wet magnet

Use .reopen if this was a mistake.

lone heartBOT
#
Available help channel!

Send your question here to claim the channel.

Remember:
Ask your math question in a clear, concise manner.
Show your work, and if possible, explain where you are stuck.
After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!

Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.

slow sleet
#

Im a bit confused as to what the confidence interval means

slow sleet
#

what does it look like graphically?

jaunty wharf
#

as in 95 % confidence intervals and such?

slow sleet
#

ye

#

cuz i got like stuff with normalcdf and stuff in highschool but i dont know if this is the same

#

or not

jaunty wharf
#

depends on the type of question youre facing

slow sleet
#

i am tryuing to understand what confidence interval means

#

and how i can use it

#

not a specific question bound to it

jaunty wharf
#

okay confidence intervals are basically a range of values that a particular random variable can take with a particular probability of it being the true value of the RV in that context

#

for instance, if you're given a 95 % interval of X as say 15.4 - 18.9, it means the true value of X in context of that particular problem will lie in that range 95% of the time

#

there are different methodologies regarding how to arrive at these intervals, im sure you'll come across them if you already haven't

#

they do require knowledge of critical points of certain distributions, mostly normal

slow sleet
#

but wdym real value, is this just the lower and upper bound of the distribution such that a random value in that distribution has a x chance of lying within the bounds?

jaunty wharf
#

no no

#

a confidence interval only comes into play when youre given real life data about the parameters of an RV which follows a theoretical distribution

slow sleet
#

whats an RV?

jaunty wharf
#

a random variable

slow sleet
#

so like its not this?

#

cuz thats what i thought it meant pretty much

jaunty wharf
#

graphically , you're correct but this graph can also refer to a basic theoretical distribution in which case you wouldnt call it a confidence interval, get it?

slow sleet
#

oh wwait

#

the confidence interval is also true for non normal distributions?