#help-36

1 messages · Page 244 of 1

obtuse hedge
#

For higher n you may be able to split it into 3

#

3+

#

I doubt it but I've only been able to try small n so it could well be

barren pebble
#

We can clearly "feel" the difference between even and odd n, so intuitively the f(n) function will have floor/ceiling function, so for large enough n where the decimals jump up a unit, mtt's bound will be off

#

That's my intuition

obtuse hedge
#

Yeah the original sequence I was following does

#

These two don't diverge until n = 14 sadly which is a lot of checking XD

#

I will say though this sequence corresponds to a lot of things

barren pebble
#

It would be faster to just check until mtt's bound isn't tight

#

But again, this

tight geode
#

i have been working on this in the past week in my math class, here is what I have

soft zealotBOT
#

DM ModMail for new nickname
Compile Error! Click the errors reaction for more information.
(You may edit your message to recompile.)

obtuse hedge
#

This would suggest that there exists no way to do it for n = 3 in less than 3 moves, but you can do it in 1 move 🧐

#

Hopefully this thread is open in the morning

#

There's a lot of interesting things this sequence enumerates that I'd like to see if I can relate to this

#

Also, from the starting position in standard chess, minimum number of captures by pawns of the same color to place n of them on the same file (column). Beyond a(6), the board and number of pieces available for capture are assumed to be extended enough to accomplish this task. - Rick L. Shepherd, Sep 17 2002
For example, a(2) = 1 and one capture can produce "doubled pawns", a(3) = 2 and two captures is sufficient to produce tripled pawns, etc. (Of course other, uncounted, non-capturing pawn moves are also necessary from the starting position in order to put three or more pawns on a given file.) - Rick L. Shepherd, Sep 17 2002
Like this one

tight geode
#

wait wait, I sent my first draft and that was what ny professor asked

#

this is the latest version

soft zealotBOT
#

DM ModMail for new nickname
Compile Error! Click the errors reaction for more information.
(You may edit your message to recompile.)

tight geode
#

the formula also works for 3

#

so generally it would be $\frac{(n-1)(n-2)}{2}$

soft zealotBOT
#

DM ModMail for new nickname

obtuse hedge
#

That's what I posited, but

tight geode
obtuse hedge
#

Well for n = 5 that gives 6 but you can do it with 4

#

Again that bound assumes you treat the whole thing as one set but if you split it into two and reverse both subsets it takes less time

tight geode
#

hmm, yea, I think we need to respect the circular symmetry

#

I think we are treating them as people standing in line

obtuse hedge
#

Yes, in that case you can't split them up

#

But since they're in a circle you can (at least into two)

#

Which lowers the upper bound to I believe what's given by that sequence but I would have to evaluate properly

barren hound
#

@tight geode you had already made a bad impression due to your name. What you posted was indistinguishable from LLM slop (seriously, why would it be formated that way?). You seem to be an actual human and are participating in this discussion, so I'm not going to mute you (though I have deleted the annoyingly long messages). But I would suggest having a look at the #rules before you continue.

tight geode
trail mango
barren pebble
#

monkaS 🍿

tight geode
# trail mango you’re not fooling anyone blud

wait wdym, im a math major and this was in one of my previous assignments, since it was a graded work I formatted it in LaTeX and it was formally written, I just thought it would help here

trail mango
#

blud……

strange sparrow
#

blud……

obtuse hedge
#

Got the whole community in here opencry

tight geode
#

why is everyone blud..... ing me?

trail mango
barren hound
#

ok whatever just get back to whatever it is that this channel is about

obtuse hedge
#

oh that's hayley

trail mango
#

female pure

barren hound
#

pure female

barren pebble
#

Idk what just happened, but anyways...

tight geode
quiet lagoon
#

allowed

trail mango
obtuse hedge
iron frigate
#

!nogpt

final saddleBOT
#

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).

tight geode
obtuse hedge
#

Oh there's a generating function representation of this sequence opencry if only I knew how to interpret those

barren pebble
#

Then find the general formula

obtuse hedge
#

The recurrence is as stated

#

(n-1)(n-2)/2

#

Because you just move each number into position

#

One by 1

#

With 1 2 3 4 5 you move 1 over by 4 positions to get 2 3 4 5 1, then move 2 over by 3 positions to get 3 4 5 2 1, then move 3 over by 2 and 4 over by 1

#

Sum of the first k-1 positive integers to reverse the order of a row of k numbers

barren pebble
thin cloud
#

sorry, a fast-3 consist of 3 moves right?

obtuse hedge
#

What would be left is to prove that the greedy algorithm is best there

obtuse hedge
obtuse hedge
#

If n is even, then you have

thin cloud
#

But n=4 can be done with 2 moves

barren pebble
#

I didn't see any

obtuse hedge
obtuse hedge
#

Which was fast-(k+1) = fast-k + k moves

cerulean epoch
#

swap 1 and 2 then swap 3 and 4

obtuse hedge
#

Woah how'd I miss that

tight geode
obtuse hedge
#

Oh the sequence does have a 2 in it

barren pebble
#

Our values so far:
f(3)=1
f(4)=2
f(5)=4
f(6)=6
f(8)=12
f(9)=16

thin cloud
obtuse hedge
#

I guess I just wrote it wrong

#

But yeah the one I believe is correct (only verified up to n = what nerdyasianguy sent) has 2

#

I just made an oopsies

barren pebble
#

What's the 9-move sol for n=7? There should be one

obtuse hedge
#

n = 5 we split into a fast-3 and a swap of 2

obtuse hedge
#

But I can describe it since I have my strategy that I still haven't gotten the chance to give you my formula for

#

Since everyone has questions

#

Which is

barren pebble
#

Okay just saw it

obtuse hedge
#

Split 7 into a fast-4 and a fast-3

tight geode
obtuse hedge
#

6 + 3 = 9

barren pebble
#

I'll just try to find a pattern with those then prove it later
f(3)=1
f(4)=2
f(5)=4
f(6)=6
f(7)=9
f(8)=12
f(9)=16

obtuse hedge
#

I mean you have the pattern with those so far which was floor(n^2/4) or floor(n/2)*ceil(n/2)

#

But I'll give my explanation quickly now that I have a chance

#

Ah damnit I always write this formula wrong

#

Let me fix

barren pebble
obtuse hedge
#

Ah it's too far up

barren pebble
#

Eh... Doesn't seem like any oattern like this

obtuse hedge
#

But the sum of the first k-1 positive integers is k(k-1)

#

Which is what I should have written

obtuse hedge
#

Now using this we get mtt's bound

barren pebble
#

f(5)=f(3)+3
f(6)=f(4)+4
f(7)=f(5)+5
f(8)=f(6)+6
f(9)=f(7)+7

#

f(n)=f(n-2)+(n-2)

barren pebble
#

Yeah this seems like it

#

Induction time?

obtuse hedge
# obtuse hedge Which is what I should have written

If n is even, then we split n = 2k into 2 fast-k's
That means it'll take 2*k(k-1)/2 = k(k-1) = n/2(n/2-1) = n^2/4 - n/2 = (n^2-2n)/4

If n is odd, we split n = 2k+1 into a fast-k and a fast-(k+1)
That means it'll take k(k-1)/2 + k(k+1)/2 = k/2(k-1 + k+1) = k^2 = ([n-1]/2)^2 = (n-1)^2/4 = (n^2 - 2n + 1)/4

barren pebble
#

I'm not really following the fast-k's stuff

obtuse hedge
thin cloud
obtuse hedge
#

To state it more formally for when you get back

barren pebble
obtuse hedge
#

Yes that is what I have

#

👌

#

Which is what it should be since the terms currently match the sequence

barren pebble
#

What's the argument behind it though?

#

Btw i'm impressed how after that many years, the question is still challenging

obtuse hedge
#

The fastest way to reverse a list of $k$ elements takes $\frac{k(k-1)}{2}$ transpositions.

To work on this problem, we split the circle into as close to halves as possible:

If $n$ is even, then we split $n = 2k$ into two lists of length $k$, which we swap the order of:
That means it'll take $$2*\frac{k(k-1)}{2} = k(k-1) = \frac{n}{2}\left(\frac{n}{2}-1\right) = \frac{n^2}{4} - \frac{n}{2} = \frac{n^2-2n}{4}$$ transpositions to complete.

If $n$ is odd, we split $n = 2k+1$ into one list of length $k$ and one of length $k+1$, which we swap the order of:
That means it'll take $$\frac{k(k-1)}{2} + \frac{k(k+1)}{2} = \frac{k}{2}(k-1 + k+1) = k^2 = \left(\frac{n-1}{2}\right)^2 = \frac{(n-1)^2}{4}$$ transpositions to complete.

barren pebble
#

Compared to like IMO1986/P6 used the be one of the hardest olympiad questions but now it's commonly taught to highschoolers as an example

barren pebble
thin cloud
#

the 2 havles part is the same as mine

barren pebble
#

Where's the first claim from?

soft zealotBOT
#

Coolempire93

obtuse hedge
#

Although that's not to say I could prove it trivially

barren pebble
#

Btw just to add, we can write f(n) more neatly with celing function because n(n-2) and (n-1)² are off by exactly 1

#

So f(n)= ceiling of n(n-2)/4

obtuse hedge
#

Yes, which is how they get what they wrote in the actual sequence

#

With this being the generating fucntion

obtuse hedge
thin cloud
#

And it seems like

barren pebble
thin cloud
#

2 sequences are being reversed in order

obtuse hedge
thin cloud
#

So I think of a bracelet

obtuse hedge
#

What's weird is the order mattering for the circle but not the pieces

thin cloud
#

It's weird tho because I wasn't able to finish the proof

obtuse hedge
#

I also think the one about the bipartite graph could be directly related to the halving idea

#

a(n) is also the maximal number of edges that a triangle-free graph of n vertices can have. For n = 2m, the maximum is achieved by the bipartite graph K(m, m); for n = 2m + 1, the maximum is achieved by the bipartite graph K(m, m + 1).

thin cloud
#

I thought of an actual bracelet that have numbers on it xd

#

kinda funny

barren pebble
obtuse hedge
thin cloud
#

I mean, like how would you actually make the order counterclockwise on a bracelet

#

You cut it

#

And then connect them the other way around

#

That's how I came up with the idea

obtuse hedge
#

a(n) is the sum of the positive integers < n that have the opposite parity as n.
Deleting the first 0 from the sequence results in a sequence b = 0, 1, 2, 4, ... such that b(n) is sum of the positive integers <= n that have the same parity as n.

#

I might have to create an account just to leave a comment that this sequence is the minimum number of steps it takes to counterclockwise order n beads on a bracelet

#

Supposing we can prove it's optimal

cerulean epoch
#

this is a lower bound by the way

#

if you are odd then you will have one fixed point

obtuse hedge
#

Anyway I really do need to sleep so I'll be going but I'm going to favorite this channel and I'll be returning to this problem regardless 😆

thin cloud
#

I think split the circle into 2 halves is the only way to can make it counterclockwise ( this is where I kinda stuck) , if we can show that, we only have to show k-swap + k+1 swap is the lowest

#

Which shouldn't be too hard considering we already have closed form of the sequence

barren pebble
#

The k-swap with k+1-swap is just one solution

#

What we need to prove is that this yields the lower bound

#

Note that the recurrence of mine above:
f(n)=f(n-2)+(n-2) yields the same result

#

So i'll just prove f(n)≥f(n-2)+(n-2)

#

(f(3)=1 and f(4)=2 are trivially checked by hand)

thin cloud
#

I found the solution online

barren pebble
thin cloud
#

Letme see

barren pebble
#

Because we need to move the n-2 original people through the chord, it takes at least n-2 moves

#

This is the desired lower bound

thin cloud
barren pebble
barren pebble
barren pebble
#

I think this is done

thin cloud
#

I just don't have any more energy to do so, Imma head out

#

I have solution here if you want to see, tho I don't think it shares similar idea as our

barren pebble
#

I think the "jumping over the inaginary chord" argument above is sufficient

barren pebble
#

Thanks anyways, bye

#

.close

final saddleBOT
#
Channel closed

Closed by @barren pebble

Use .reopen if this was a mistake.

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

maiden oracle
#

i can’t figure out this problem,my basic idea is to extend the functional to the entire C([(0,1)] and use riesz representation theorem ,but to extend it I need to prove the functional is bounded,that is where I am stuck

final saddleBOT
#

@maiden oracle Has your question been resolved?

final saddleBOT
#

@maiden oracle Has your question been resolved?

cerulean epoch
#

,rotate

soft zealotBOT
cerulean epoch
#

have you tried mimicking the proof of riesz representation theorem by hand

maiden oracle
cerulean epoch
#

i don't think you can do that in general

#

i meant like the actual proof of riesz representation where you first define μ on open sets U by taking sup of l of functions whose range is contained in [0, 1] and whose support is contained in U

#

blah blah blah

#

except you can't do this immediately since X might not have these functions so you need to modify the construction slightly

final saddleBOT
#

@maiden oracle Has your question been resolved?

maiden oracle
#

i wanna know wether X contains the constant function one

#

if that is sure then we are set

final saddleBOT
#

@maiden oracle Has your question been resolved?

final saddleBOT
#

@maiden oracle Has your question been resolved?

deep condor
deep condor
# maiden oracle i wanna know wether X contains the constant function one

so you can't know which functions are in X (could be all nonconstant), but you know that X is a dense linear (Banach) subspace of C[0,1]. can you use the properties of the subspace to show that a constant function must be in X?

for gmz's solution, can you use the properties of the subspace X to show that μ exists for U? (i.e. that there are functions with range in [0,1] and support in U)?

that is the extent of what i know, so you can try #advanced-analysis if you dont get any more help here. enjoy the problem :)

final saddleBOT
#

@maiden oracle Has your question been resolved?

karmic shard
final saddleBOT
#

@maiden oracle Has your question been resolved?

deep condor
#

@maiden oracle, since you have not closed the channel yet, can you tell me if you tried the above method? where did you get stuck / what aren't you sure about?
if you do not need this channel, you may type .close to close it :) if not, please engage with the solutions or voice your concerns, otherwise this channel will be closed soon

native cave
#

i

maiden oracle
#

.close

final saddleBOT
#
Channel closed

Closed by @maiden oracle

Use .reopen if this was a mistake.

harsh talon
#

This problem asks you to show that a positive linear functional defined on a dense subspace of C([0, 1]) can be represented by a unique Borel measure. This is a classic application of the Riesz-Markov-Kakutani Representation Theorem, but with a twist: the functional is initially defined only on a dense subspace X.
Here is the step-by-step logic to solve it.

  1. Show that l is bounded (Continuous)
    Even though the problem says l is "not assumed to be continuous," a positive linear functional on a space of continuous functions is automatically bounded.
  • Let f \in X such that |f|_\infty \leq 1. This implies -1 \leq f(x) \leq 1 for all x \in [0, 1].

  • Since X is a dense subspace, the constant function \mathbf{1} might not be in X, but we can work around this. For any f \in X with |f|_\infty \leq 1, we have:

  • By the positivity of l, if f, g \in X and f \leq g, then l(f) \leq l(g).

  • This implies that for any f \in X, |l(f)| \leq C |f|_\infty. Thus, l is a bounded linear functional on the subspace X.

  1. Extend l to the whole space C([0, 1])
    Since X is a dense linear subspace of the Banach space C([0, 1]) and l is a bounded linear operator, there exists a unique continuous linear extension L: C([0, 1]) \to \mathbb{R}.
  • For any g \in C([0, 1]), we define L(g) = \lim_{n \to \infty} l(f_n), where {f_n} is a sequence in X converging to g.
  • Crucially, this extension L preserves positivity. If g \geq 0 in C([0, 1]), we can find a sequence f_n \in X such that f_n \to g and f_n \geq 0 (or slightly shifted to ensure positivity), meaning L(g) = \lim l(f_n) \geq 0.
  1. Apply the Riesz-Markov-Kakutani Theorem
    Now that we have a positive linear functional L on C([0, 1]), we apply the representation theorem:
  • Theorem: For every positive linear functional L on C([0, 1]), there exists a unique Radon measure (which, on a compact metric space like [0, 1], is a Borel measure) \mu such that:

  • Since L is an extension of l, it follows that for all f \in X:

strange sparrow
#

!nogpt

final saddleBOT
#

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).

muted prairie
final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

twin pivot
#

$E[X]=Np ,P(X_N = k) = \binom{N}{k}, p^k, (1-p)^{N-k}$

twin pivot
#

can someone justify this?

#

wait

tired walrus
#

just send an image mate

soft zealotBOT
#

Goofy Joe

twin pivot
#

this 2

small grail
#

looks like binomial distribution

twin pivot
tired walrus
#

yeah looks like binomial distribution

twin pivot
#

could you help me understand what these formulas mean, please

tired walrus
#

the binomial distribution arises when you repeat the same experiment n times, where the probability of success in each trial is p (constant across all trials), the trials don't affect each other in any way, and you count up the total number of successes

twin pivot
#

Thanks

#

Why does PMF have that formula there?

forest totem
#

helps to try examples with small numbers

say if N = 3 and you are flipping a (biased) coin with Heads (0.6) and Tails (0.4):
if you want to find the probability of HHT, that's just 0.6 * 0.6 * 0.4
and then HTH = 0.6 * 0.4 * 0.6 which is the same
and then THH = 0.4 * 0.6 * 0.6 is the same again

#

so there are 3 ways you can choose 1 tail out of 3 flips

#

that also means, there are 3 ways you can choose 2 heads from 3 flips

#

(3 choose 1) = 3, (3 choose 2) = 3

#

you should be able to find the factorial definition of n choose r

#

essentially, you can swap the r heads with each other, and that doesn't give you a different order, so there are r! duplicates of the same sequence of heads and tails

#

and then you can swap the (n - r) tails with each other, so (n - r)! duplicates

twin pivot
#

why 3 ways

forest totem
twin pivot
#

HHT

forest totem
twin pivot
#

ah so the order doesn't matter?

forest totem
#

yeah!

twin pivot
#

but couldn't we also say that for example THH there are 3 ways to arrange these 3 elements!, but for example writing THH and THH is the same thing, so I can divide by 2! and 1!, and to obtain the probability then divide by all the cases which are 8?

#

it seems the same to me,but I don't know if it's just a coincidence

forest totem
#

but we're only considering the cases that have only 1 T

twin pivot
#

yes

forest totem
#

actually this is where Pascal's triangle comes from

#

1, 3, 3, 1
0T, 1T, 2T, 3T

#

and the total 1 + 3 + 3 + 1 = 8

forest totem
#

yes, you can also do 3! / (2! * 1!) = 3

#

and that's the proper way to find the number of cases that have only 1 T

twin pivot
#

yes

forest totem
#

arrange the Ts among each other; arrange the Hs

final saddleBOT
#

@twin pivot Has your question been resolved?

twin pivot
#

thanks

final saddleBOT
#
Channel closed

Closed by @twin pivot

Use .reopen if this was a mistake.

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

thin cloud
#

Find the shortest distance between the parabola and the circle

thin cloud
#

Yeah I forgot how to do these problem bearlain

forest totem
#

so one condition is that the tangent slopes must be the same for both points

thin cloud
forest totem
thin cloud
#

pandathink I did thought of that but I'm not sure why

forest totem
#

it's a variation on, "the shortest distance between two parallel lines is the perpendicular distance"

#

I think it's easier to consider the case when you want to find the shortest distance between a point and a curve

thin cloud
#

Like

#

How do we know that line connecting those 2 points is perpendicular to the tangent

forest totem
#

you can imagine making a circle with any radius centered at that point

#

then there's a unique shortest distance, where the tangent slope is perpendicular to the slope connecting the point and some arbitrary point on the blue curve

thin cloud
#

pandathink the question is, why

thin cloud
#

Why do we know that would be perpendicular

#

like in the image

forest totem
forest totem
thin cloud
#

okay

forest totem
#

right, so you don't actually need the two curves for your problem

#

just take the centre of the circle and that parabola

thin cloud
#

Hey that's what I did

#

And the answer is wrong

#

,w optimize sqrt((x-30)^2+(-0.3x^2+6x-50)^2)

forest totem
#

okay let's take a look

#

,w d/dx sqrt((x-30)^2+(-0.3x^2+6x-50)^2) = 0

thin cloud
#

,w sqrt((x-30)^2+(-0.3x^2+6x-50)^2) when x=11.492

thin cloud
#

this's wrong

#

This's what I did in the exam

forest totem
#

looks tangent to me

thin cloud
#

The answer was 11.7, and I'm certain that's what they give us

forest totem
#

you forgot to subtract the radius of the circle

thin cloud
#

Ohhh

#

DAMN ITTTT

#

I THOUGHT MY SOLUTION WERE WRONG

forest totem
#

yeah and that is 11.7, I just confirmed

thin cloud
#

FUCKKKKKK

#

😭

#

Okay that method I get it, I meant I even used it

#

But I still don't know why

#

the perpendicular part here

forest totem
#

it just follows from substituting y = -0.3x^2 + 6x into sqrt((x - 30)^2 + (y - 50)^2)

#

I think the more important part is:

#

why when finding the extrema of sqrt((x - 30)^2 + (y - 50)^2)

#

you can just find the extrema of (x - 30)^2 + (y - 50)^2

thin cloud
#

THIS

#

I DON'T GET THIS

forest totem
#

oh okay

#

I can explain

thin cloud
#

pandathink okay

forest totem
#

you want these black lines to be the exact same line

thin cloud
#

why

forest totem
#

like, to find the shortest distance between two curves

#

you choose one point on the other curve, let's focus on the point and the red parabola

#

find the shortest distance for that point

#

then choose another point on the blue circle, and find the shortest distance to the red parabola again
over all points on the blue circle, choose the MINIMUM distance

#

but you could also choose a point on the red parabola, then find the shortest distance to the blue circle

#

both of these methods have to give you the same minimum distance

the minimum distance between (any point on red) and (any point on blue)

#

= minimum distance between (any point on blue) and (any point on red)

thin cloud
#

Okay I see

forest totem
#

so it's the same line

#

and that line has two right angles

forest totem
thin cloud
#

okay I just lost 5% mark for that shiiiii

#

Damn it

#

I triple checked it btw

#

And somehow still wrong opencry

forest totem
# forest totem

it's amazing you can deduce this from the simpler case of point and a curve

#

that's the bigger picture

thin cloud
#

yeah

forest totem
#

okay thank god you understood

thin cloud
#

I'm not that bad bro

#

Tho I should probably start grinding optimization problems atp

forest totem
#

I think that's a pretty hard type already

#

there's also like finding a circle tangent to three functions...

#

absolute hell.

thin cloud
#

I'll be fineeee

forest totem
#

I don't think there's any class that teaches this kind of optimisation

#

everyone just self-learns it

#

if you have Desmos and WA it's okay

thin cloud
#

I haven't done anything optimize problem fo 3 months now, I expected this

forest totem
#

the original problem isn't bad (single-variable)

forest totem
#

but then there's all these variations which are challenging

thin cloud
#

Ah there're also a really fun optimization on the test kek

#

1 min I'll show you

#

Tbf I spent the last 3 months doin combinatorics so my calc skill is kinda rusty

forest totem
#

it's okay, I'm rusty in combi too

thin cloud
#

a dude want to go from point A to point B at the other side of the river. His swimming speed is 1 m/s, and the water's speed is also 1 m/s. He can run on land with speed of 3 m/s

#

Point A,B like so, the distance between both side of the river is 300 m and HB=900 m

#

What's the minimum time it takes him to go from A to B

forest totem
#

oh that

#

I've seen that before in textbooks

thin cloud
#

pandathink what book

forest totem
#

can't remember

#

oh, the twist is that the water has some velocity

#

usually the water is still

tranquil pine
thin cloud
#

900

forest totem
thin cloud
thin cloud
small grail
tranquil pine
#

so prob he should minimize time in water or smth

thin cloud
tranquil pine
thin cloud
#

We have to figure it out ourself tho they ain't teach nothing

small grail
#

something like :
break his velocity in components then add velocity of water in horizontal direction the find time it takes to reach other shore wrt to theta then write the distance left to walk on land
add these all and find maxima wrt to theta

#

eh i need to rephrase into something understandable but i gtg now

thin cloud
#

working with angle is ass

#

There's a way to do this w/o angle tho

#

meowdy aight Imma dip

#

.close

final saddleBOT
#
Channel closed

Closed by @thin cloud

Use .reopen if this was a mistake.

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

exotic shale
final saddleBOT
exotic shale
#

What way are there to find maclaurin series

#

Without using the formula and getting derivatives which is time consuming

scarlet sequoia
#

Do you know the maclaurin series for $\frac{1}{x+a}$

soft zealotBOT
#

Rafilouyear2026

exotic shale
#

Well ik for 1/(1-x)

scarlet sequoia
#

Ok

scarlet sequoia
exotic shale
#

Which is 1+x+x^2+...

exotic shale
scarlet sequoia
scarlet sequoia
exotic shale
#

I take out x^2 so i have 1/(1+5/x + 6/ x^2)?

exotic shale
#

I thiught you asked for this

scarlet sequoia
scarlet sequoia
# exotic shale

For your og exercise, we're gonna need to rewrite this in terms of 1/(x+a) for some values of a

#

If you can see how, then that's a first step

exotic shale
#

Ok so fron 1/(1-x)

#

I multiply by -a

#

So i have 1/(ax - a)

scarlet sequoia
exotic shale
#

And i set u= ax

#

So i have 1/(u-a)

scarlet sequoia
#

It's almost that, you're forgetting some constant

exotic shale
#

Wdym

scarlet sequoia
#

1/(1-x) = -a/(u-a)

#

Because you multiplied by -a on the denominator, you need to do the same on the numerator

exotic shale
#

So i have

#

a+ a^2 x + a^3 x^2?

scarlet sequoia
#

Uh

#

Did you mean u instead of x

#

Also wait

#

It doesn't make a lot of sense

scarlet sequoia
exotic shale
scarlet sequoia
exotic shale
#

How

#

Isnt it 1+ r + r^2 +....

#

All multiplied by a

#

And r = ax

scarlet sequoia
#

1/(1-r)

All multiplied by a
a/(1-r)
And r = ax
a/(1-ax)

#

So not 1/(x-a)

exotic shale
#

then what is it

scarlet sequoia
#

What is 1/(1-x)

exotic shale
#

1+x+x^2....

scarlet sequoia
#

Ok

#

-a/(u-a) = 1+x+x²+...

#

So, how do we get 1/(u-a)

exotic shale
#

These the ones im supposed to know

exotic shale
#

But x=u/a

scarlet sequoia
scarlet sequoia
#

1/(u-a) = -1/a - x/a - x²/a ...

#

1/(u-a) = -1/a - u/a² - u²/a³ ...

#

And we're done

#

And since this is only valid for x in (-1,1)

#

It corresponds to u in (-|a|,|a|) (accounting for both possible signs of a)

#

Does that make sense?

exotic shale
#

Idk this seems complicated

#

You sue its the easiest

#

Isnt it easier if we bring it to 1/(1-f(x))

#

So then its just 1+f+f^2 ..

scarlet sequoia
#

If f(x) is something like (x+1)², what do we do

#

The best possible case, and possibly the only case your method works, is if f(x) = constant*x

#

Which exactly corresponds to 1/(x-a)

exotic shale
#

Why

#

Cant we have x^2 aswell

#

We just put it in stead of r

scarlet sequoia
#

You can probably extend it to f(x) = constant*x^p

#

But that's as far as it goes

scarlet sequoia
exotic shale
#

This is an example my prof did

#

Maybe you can see what method he uses

scarlet sequoia
#

Well it's maclaurin of 1/(1-u) with u = x³, sure

#

Because the denominator is already nice looking

exotic shale
#

Ah ok

#

So in my example

#

If i take out x^2

#

Its 1-(5x+6)

#

Then take out 5

scarlet sequoia
#

Huh

exotic shale
#

No wait

#

I take out 6

#

And have 1+5/6 x + 1/6 x^2

#

And i set u = 5/6 x + 1/6 x^2 and have 1/(1+u)

scarlet sequoia
#

Two things wrong

#

I'll start with the thing we discussed earlier

scarlet sequoia
#

And second thing

exotic shale
#

Why

scarlet sequoia
#

u doesn't even approach 0

#

So you can't use maclaurin

exotic shale
#

Oh btw

#

It says to find maclaurin up to third order factors

#

I forgot to say that its important though

#

So maybe the approach is different

scarlet sequoia
#

Up to third order only?

#

It does clear up the path for a third way, closer to what you've been trying to do

#

But let's try to continue with what I've been hinting at the whole time

#

Can you factor the denominator?

exotic shale
#

I dont want to do something more complicated than i need for exam

#

The questions only ask up to 3rd or 4th or 5t

scarlet sequoia
#

If you insist

#

Don't divide by anything other than constants

#

If you divide by x² for example, the thing you did before still doesn't work

scarlet sequoia
#

So, make the 1 appear at another place

#

Like in here: x²+5x+6

exotic shale
#

Ok

#

So i make it 1+5/6 x + 1/6 x^2

#

And set u= -5/6 x - 1/6 x^2

#

So its 1+u +u^2 +...

#

Btw what does 3rd order factor means ?

#

Up to seeing x^3?

scarlet sequoia
scarlet sequoia
final saddleBOT
#

@exotic shale Has your question been resolved?

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

near thistle
#

if i use a geometric argument and track where the basis vectors go for a 45 degree rotation clockwise i end up w $\frac{\sqrt{2}}{2} \begin{pmatrix} 1&1\-1&1 \end{pmatrix} $ but applying that same linear transformation on my graph i get a 45 degree anticlockwise rotation instead, w applying meaning subbing in $\frac{\sqrt{2}}{2} (x+y)$ for y and $\frac{\sqrt{2}}{2} (-x+y)$ for x. why is there that diff?

soft zealotBOT
near thistle
#

context of this is im being asked to use standard result for an upright parabola at origin $4ay=x^2$, where a is focus and directrix displacement from origin to find cartesian eq of parabola w focus (2,2) and directrix $x+y+4=0$, and the method suggested by textbook is 'use a matrix transformation'

soft zealotBOT
near thistle
#

hence why the 45 degree rotation clockwise for curve $x^2=16\sqrt{2}y$

soft zealotBOT
final saddleBOT
#

@near thistle Has your question been resolved?

final saddleBOT
#

@near thistle Has your question been resolved?

loud sundial
# near thistle if i use a geometric argument and track where the basis vectors go for a 45 degr...

Your matrix calculates the new position of a \textit{point} that is rotated $45^{\circ}$ clockwise. However, when applying this to a graph, you're effectively asking "What points land on the graph \textit{after} being rotated clockwise?" In other words, you're defining the pre-image of the graph, or just the original graph being rotated counter-clockwise. So to rotate the graph clockwise, you need to use the \textit{inverse} transformation instead. (You can also this as rotating the axes instead.)

soft zealotBOT
#

Civil Service Pigeon

near thistle
#

oh right ok

#

it might take me a bit to rlly accept it

#

tysm for the explanation

#

.close

final saddleBOT
#
Channel closed

Closed by @near thistle

Use .reopen if this was a mistake.

loud sundial
final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

abstract bramble
#

Find the general solution to $y^\prime + 3y = t + e^{-2t}$.
Textbook answer:
$$\mu(t) = e^{\int 3,dt} = e^{3t}.$$
Thus
$$
e^{3t}(y' + 3y) = e^{3t}(t + e^{-2t}),
$$
or
$$
(ye^{3t})' = te^{3t} + e^{t}.
$$
Integration of both sides yields
$$
ye^{3t} = \frac{t e^{3t}}{3} - \frac{e^{3t}}{9} + e^{t} + C,
$$
where integration by parts is used on the right side, with $u = t$ and $dv = e^{3t} dt$.
Division by $e^{3t}$ gives
$$
y(t) = Ce^{-3t} + \frac{t}{3} - \frac{1}{9},
$$

soft zealotBOT
#

k.tten

abstract bramble
#

is the textbook answer missing a term in the general solution??

#

original from textbook

scarlet sequoia
#

What would the missing term be?

#

Wait a bit

#

Yeah the e^t shouldn't disappear when multiplying with e^(-3t) xd

#

$y(t) = Ce^{-3t} + e^{-2t} + \frac t3 - \frac 19$

soft zealotBOT
#

Rafilouyear2026

abstract bramble
#

ok so i am not crazy thanks

scarlet sequoia
#

Which doesn't change the final answer but still

abstract bramble
#

.close

final saddleBOT
#
Channel closed

Closed by @abstract bramble

Use .reopen if this was a mistake.

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

magic oracle
#

How do I add exponents

final saddleBOT
magic oracle
#

@final saddle

plucky rover
#

,tex .exp rules

soft zealotBOT
#

Xavier 🌺

magic oracle
#

I didn’t learn it yet

#

How do I know if this is a reliable source

abstract bramble
#

google it

magic oracle
#

google is full of liars

abstract bramble
#

alright derive it yourself then

magic oracle
#

what does derive mean

abstract bramble
#

discover it yourself

plucky rover
magic oracle
#

mmm 🤔

#

How do I discover it

willow jungle
#

Guess and check

magic oracle
#

What does that mean

willow jungle
#

Mess with exponents and see what they equal

magic oracle
#

Is it like using a dictionary

#

Mb it slipped

plucky rover
#

<@&268886789983436800> might wanna check delete logs for this one

magic oracle
#

I had it on clip board

#

@golden merlin

#

@plucky rover help

willow jungle
#

Like 2^2 * 2^2 = 2^4

magic oracle
#

Wouldn’t it be 8 since there is 4 2s

plucky rover
tulip coyote
#

Yeah, I really don't trust you're here in good faith, or genuinely asking questions sully

magic oracle
#

Can you source it

#

I know it didn’t just come from your butt

plucky rover
tulip coyote
#

You can come back after 10mins catThink if you insult people again, your timeout will be much longer than that, if we don't ban you catokay

#

.close

final saddleBOT
#
Channel closed

Closed by @tulip coyote

Use .reopen if this was a mistake.

thorn yew
#

bro mods who did he insult bro...

#

i think he was genuinely being curious on where exponent rules came from

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

fair hemlock
#

@golden merlin @plucky rover I need help on my math for algebra 2

tiny gorge
#

hey look, Bat and Bot

fair hemlock
#

Can u help me on these problems thx

fair hemlock
final saddleBOT
fair hemlock
#

Whoops

#

Plz help

orchid osprey
#

what do you need help with

fair hemlock
#

Cud u check if these answers are right?

orchid osprey
#

sure

final saddleBOT
#

@fair hemlock Has your question been resolved?

final saddleBOT
#

@fair hemlock Has your question been resolved?

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

brazen breach
#

any1 w ideas

final saddleBOT
brazen breach
#

I think the logx is the ln thing

#

I tried using uhh

#

ibp but I ended up with the integral arctanx/x dx

#

I got no idea how that one works

#

I wonder if I can do that funny thing

#

oh yeah it's definitely 0, yeah nvm I got it

#

euler did this one apparently

#

.close

final saddleBOT
#
Channel closed

Closed by @brazen breach

Use .reopen if this was a mistake.

lilac moat
#

Just sub x -> 1/x

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

rustic wedge
#

how do i show $x^2 = 2^{1-x}$ has exactly 1 solution?

soft zealotBOT
#

rak³en

rustic wedge
#

my idea is to first show that there is no negative solution

#

and then do some growth rate arguments

#

the issue is

#

how tf do i show theres no negative solution

rustic wedge
#

also, x in R

cerulean spire
#

Try applying log on both sides and try

lilac moat
soft zealotBOT
rustic wedge
#

ty

#

.close

final saddleBOT
#
Channel closed

Closed by @rustic wedge

Use .reopen if this was a mistake.

desert mantle
#

<@&268886789983436800>

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

remote spoke
#

How on earth do i find ABD

final saddleBOT
remote spoke
#

im like totally lost

final tangle
#

the angle or area of the triangle

remote spoke
#

area

#

if i try to subtract ecb, i cant find aed

#

if i subtract acf, i cant find dbf

#

i thought that their heights were the same

#

so dfb was 2 * acf

#

but no

#

what do i dooooo

#

@final tangle

#

and centroid doesnt work either

final tangle
#

coordinate bash should work

remote spoke
#

wtf

final tangle
#

there could be something else

stone wagon
#

area ECB = area AEB

remote spoke
#

this is amc8 😭

#

im cooked

stone wagon
#

let me try

remote spoke
#

hmm

#

so AED is 1 less than DBF

stone wagon
#

yes

#

or wait how did you get that

final tangle
#

in relation to amc8

#

.close

final saddleBOT
#
Channel closed

Closed by @final 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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

orchid crystal
#

Every subgroup of an abelian group is normal. Give an example to show that the converse is not true.

orchid crystal
#

I did the first part but can't show the converse is false

#

I mean non abelian is easy but then also ensuring every subgroup is normal is not something i can come up with

final saddleBOT
#

@orchid crystal Has your question been resolved?

final saddleBOT
#

@orchid crystal Has your question been resolved?

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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 python
final saddleBOT
warm python
#

To start I prove $R$ is an additive group. Let $x,y \in R$. Then $v(x), v(y)≥0$ so $v(x+y)≥0$. So $x+y \in R$.We now prove that $R$ has the identity. $v(1)=v(1)+v(1)=0.$ so $1 \in R$.

scarlet sequoia
#

"Let x,y in R" is what you meant right

warm python
#

yea correcting that now, whiled adding a proof of inverses

scarlet sequoia
#

Also, if you take x,y in R, it's not always the case that they are in K^×

#

And x+y is not necessarily in K^× either

soft zealotBOT
warm python
#

0 isn't mapped to anything?

#

hmm

#

okay, got it

#

v(xx^{-1}) =0 \implies v(x)=-v(x^{-1})$
but $v(-xx^{-1}) =0 \implies v(x)=v(x^{-1})$. So $v( x)=0$. Thus inverses are in $R$ too, so $R$ is an abelian group

soft zealotBOT
#

wai
Compile Error! Click the errors reaction for more information.
(You may edit your message to recompile.)

scarlet sequoia
#

You're trying to prove R is an additive group

#

So what is supposed to be the "inverse" rule?

warm python
scarlet sequoia
#

That's not what I said

#

You're saying R is an abelian group, but compared to which operation

warm python
#

right

scarlet sequoia
warm python
#

oh, I see the issue now

scarlet sequoia
#

Are we interested in x^{-1}?

warm python
#

no

#

-x

#

Well, I've shown if x is invertible v(x)=0 so V(-x)=0 so -x \in K^x

warm python
scarlet sequoia
#

The proof is wrong

warm python
#

how so

scarlet sequoia
#

Why would v(-xx^-1) = 0 imply the next line

warm python
soft zealotBOT
scarlet sequoia
#

When did you prove this first set of equalities

#

And "v(-x) = -v(x)" is also false

#

I agree that v(-x) = -v(x^-1), as long as you managed to prove v(-1) = 0

warm python
#

yup, just figured

scarlet sequoia
#

But why would this all be equal to v(-xx^-1)

warm python
#

well, so we've shown if x is invertible v(x)=0. haven't we

scarlet sequoia
#

No

#

Check your proof again

warm python
#

right 😭

scarlet sequoia
#

Also, "if x is invertible" means "if x is not 0"

#

So you're basically saying the whole valuation is always 0

#

Hard to believe

warm python
#

lemme work a bit

#

is this supposed to be an easy problem 😭

scarlet sequoia
#

You've got the idea to use -1 so yes it should be easy from now on

#

Just organize your proofs cleanly

#

And don't get caught into trying to prove something you're not asked to (and is false)
Like trying to show x^(-1) is in R when all we asked is to show -x is in R

warm python
#

yup

#

oh, v(-x)=v(x)+v(-1)=v(x)

#

so we're done

#

The next part of the problem asks me to show that if x is a unit, v(x)=0, so I thought this would kill 2 birds with one stone

scarlet sequoia
warm python
#

Lemme prove it's closed under multiplication

scarlet sequoia
scarlet sequoia
#

Separate case for x = 0, even if it's trivial

warm python
scarlet sequoia
warm python
#

wdym

scarlet sequoia
#

"Let x,y in R. Then v(x) >= 0 and v(y) >= 0"

#

Is that always true

warm python
#

well, the set R is those elements of K^x such that v(x)≥0

scarlet sequoia
#

Reread the definition of R

warm python
#

$R= {x \in K^{\times}: v(x)≥0} \cup {0}$

scarlet sequoia
#

Yes

soft zealotBOT
scarlet sequoia
#

So if you take any x in R

warm python
#

yes

scarlet sequoia
#

Can you always say that v(x) >= 0

warm python
#

well, it could be 0

scarlet sequoia
#

Exactly

#

Huh

warm python
#

oh

#

sorry

#

right

#

got it

scarlet sequoia
#

0 has no valuation, so we can't talk about v(x) unless we know for sure x ≠ 0

warm python
#

right

scarlet sequoia
warm python
#

so I add if x,y≠0

scarlet sequoia
#

That solves part of the problem

#

You'll have to make a separate case when x = 0 or y = 0, but we're on the right track

#

Now, "so v(x+y) >= 0"

warm python
#

when x=0, v(y+0)=v(y), which is ≥0

#

and similarly when x=0

#

but when both are 0, we run into problems

#

well, the function isn't defined when x=0=y

scarlet sequoia
#

What's their sum if both are 0

warm python
#

so That's a non-issue

warm python
scarlet sequoia
#

But do we need v(0) to know if 0 is in R

warm python
#

no, we already know 0 \in R

#

it's given

scarlet sequoia
#

Yep

#

We also didn't need to check v(x+y) whether x=0, y=0 or both

#

x+y = x or y, both being in R

warm python
#

I think we're done? proving closure under multiplication is a direct conseqeunce of (i)

scarlet sequoia
#

Well, as always...

warm python
#

I should show it

#

yes

#

let v(x)≥0,v(y)≥0 then v(xy)=v(x)+v(y)≥0

scarlet sequoia
#

Also

warm python
#

yes

scarlet sequoia
#

In the addition closure before

#

when x≠0 and y≠ 0

scarlet sequoia
warm python
#

not really

#

what am I missing

spring haven
#

it's the same problem you had before

warm python
#

v(0) not being defined?

scarlet sequoia
#

Yes

#

It's even stated in the property that you can only use it if x+y ≠ 0

warm python
#

I'll eat and finish this if it's fine?

spring haven
#

why would it not be fine

#

it's your life

final saddleBOT
#

@warm python Has your question been resolved?

warm python
#

Oh got it

#

V(1+0)>min(0, v(0))

#

So v(0) is less than equal to 0

warm python
#

Like 0 isn't even the domain of v

#

Wait

#

So just x+-x=0 and 0 is in it

#

😭

#

How did i miss that

final saddleBOT
#

@warm python Has your question been resolved?

#
Channel closed

Closed by @warm python

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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

rustic wedge
#

god help me

final saddleBOT
rustic wedge
#

1m^3 of neon gas (C_v =3R/2) at 273.2K and 10 atm initial pressure is expanded reversibly and isothermally to a final pressure of 1 atm. find the work done

#

now my module reports the answer as 232.85 kJ

#

whereas I am getting 2332.9 kJ

#

which is an apprx 10 times answer

#

can someone verify which answers right

#

gpt says mines but i can trust

vital crag
#

!show

final saddleBOT
#

Show your work, and if possible, explain where you are stuck.

rustic wedge
# vital crag !show

well its not very difficult since its T=const, we apply the ideal gas eqn to obtain that V2 = 10 m^3 or 10^4L

#

then w = nRT lnV2/V1 = PV ln V2/V1 = 10^4 * 2.303 * 101.3 * 10^(-3) kJ

#

numerically i havent made an error, so clearly either i put values wrong, formula wrong or my modules wrong

vital crag
rustic wedge
#

my modules calc went wrong

#

i just put in the raw numbers they put in a calc

#

how do i have better calc than them they use calculators for this stuff🙏

#

.close

final saddleBOT
#
Channel closed

Closed by @rustic wedge

Use .reopen if this was a mistake.

final saddleBOT
#
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.
Do not immediately ping people or roles. After 15 minutes, feel free to ping <@&286206848099549185> once.
• 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.

left trail
#

how can number 2 be possible. I graphed up a scenario and there are many values of b where the equation wont be 0

vital crag
#

"at most one point" means 0 or 1

left trail
# vital crag "at most one point" means 0 or 1

oops didnt read it closely . For the proving itself I was thinking of saying that f'(x) = x^3-3x+b. and then I would need to show that f(-1) = f(1) but then you have -b = b. But that seems to lend itself to there never being a point

scarlet sequoia
left trail
#

ok. This was just me trying to apply rolle theorem to the problem

scarlet sequoia
#

Yeah, but you won't apply it to some antiderivative of x³-3x+b

#

You'll apply it to something else
||for example, reasoning by absurd||

left trail
#

if we want x^3-3x+b = 0 woudln't that mean that is f'(c)

vital crag
#

f(x) is x^3-3x+b, not f'

left trail
#

how did you see that?

scarlet sequoia
#

I mean, reasoning by absurd is pretty common

#

If you have to prove that a function has at most 1 zero

#

What happens when it has 2 or more should be impossible

#

And two zeroes is exactly where Rolle intervenes

left trail
scarlet sequoia
#

Suppose that the statement is false

#

And find a contradiction

left trail
scarlet sequoia
#

And it's the consequence of Rolle, not the conditions to apply it

#

Rolle says:
IF a function f continuous on ..., differentiable on ... and has f(a) = f(b), two points with the same image
THEN f' has a zero in between

#

So if you want to apply Rolle, it's no use trying to find the zeros of a derivative

#

Because that's what Rolle is gonna give you, not what it requires

#

So, you should look for a function to which you can apply Rolle, meaning a function that has f(a) = f(b)

left trail
#

I have tried that with x^3-3x+b but then you get -1+3+b=1-3+b=0. but no b exists

scarlet sequoia
left trail
#

that is the bounds of our function though

scarlet sequoia
left trail
#

doesn't the way he define it imply the endpoints?

scarlet sequoia
#

Look, in our exercise

#

The function f(x) = x³-3x + b has a derivative everywhere on R

#

So no matter which segment [a,"b"] you're looking at

#

f is gonna be continuous on that segment and will have a derivative on the open interval inside

#

When the exercise tells you to look for zeros inside [-1,1], you're tempted to take [a,"b"] = [-1,1]

#

But, as you said it, it won't work because f(-1) is not f(1)

#

So

left trail
#

ok I see. so all I need to do is find a sub interval in -1 to 1 and then make sure that there is only one x

proven elk
#

there is one thing i think you might be missing

#

f(a) != f(b) but Rolle's theorem is about f(a) = f(b)

#

in this case you have f'(a) = f'(b)

#

right?

scarlet sequoia
proven elk
#

or is it the other way

scarlet sequoia
#

You won't get anything out of it

proven elk
#

is there some g such that g'(x) = f(x) and g(a) = g(b)

scarlet sequoia
#

We're gonna apply Rolle to f itself, not "g", not f'

proven elk
scarlet sequoia
#

Just not on [-1,1]

proven elk
#

but the question is about whether f obtains zero

#

that's different

scarlet sequoia
#

The point is to show f' has a zero

#

Because f' has no zero on (-1,1)

proven elk
#

so if you want to conclude f obtains zero at some point by rolle's you're actually talking about f being the derivative of the function that has g(a) = g(b)

#

why?

#

rolle's concludes 0 = f'(somewhere) not 0 = f(somewhere)

scarlet sequoia
scarlet sequoia
#

So

#

If we find that, when f has two or more zeros

#

f' has a zero

#

And on the other hand, f' has no zero

#

Then that's absurd

scarlet sequoia
#

And f has at most one zero

proven elk
#

does rolle's let us conclude the existence of two or more critical points?

scarlet sequoia
#

?

#

No, it gives the existence of a critical point of f

#

Critical point which cannot exist

#

Because f'(x) = 3(x²-1)

#

Which doesn't cancel on (-1,1)

left trail
#

I am understanding this correctly? For rolle we need f(a) = f(c). But they want us to show that there is at most one point where this is true. Meaning a or c but we assume there is two.

scarlet sequoia
#

Yes, suppose there is a < c in [-1,1] such that f(a) = f(c) = 0

#

That's the opposite statement of "f has at most one zero in [-1,1]"

proven elk
#

i can work out that rolles says "if f' has no zero in the interval and f is differentiable and continuous on the interval then f(a) != f(b)"

left trail
proven elk
#

i think the quoted phrase i used does it

#

it shows uniqueness of the zero when it exists

#

because our f' does have no zero in the interval

#

this is just converse law application

#

a -> b therefore not b -> not a

scarlet sequoia
proven elk
#

any zero and any other proposed zero

#

part of a uniqueness proof

scarlet sequoia
#

So you have to suppose there exist zeroes a < b, thus reasoning by absurd

proven elk
#

in that case you need to use f(a) = 0 in one case and f(b) = 0 in the other

#

in general we want to show that if a != b then f(a) != f(b) i.e. the function is injective on the interval

#

the converse on rolle's gives us exactly what we need for that conclusion

scarlet sequoia
#

I feel like you're overcomplicating trying to prove by "Rolle converse" by all means, when the reasoning by absurd seems easier

proven elk
#

Here's that for clarity:

Rolle's: If f is continuous on [a, b] and differentiable on (a, b) and has f(a) = f(b), then f' has a zero in (a, b).
Converse: If f' has no zero in (a, b) and f is continuous on [a, b] and differentiable on (a, b), then f(a) != f(b).
left trail
#

@scarlet sequoia the only issue I can see with rolle is that on our interval f' has two zeros and you can only have f(a) = f(c) if c,a = +/- sqrt(2), or 0 . the sqrt(2)'s are out of bounds but 0 is in bounds which ends up going against what we want since we can find a point in [-1,1] where f(a) = f(c)

scarlet sequoia
proven elk
left trail
#

but still we have 0 which is true

scarlet sequoia
#

So they're outside of (a,c) where a, c are the two zeroes of f we picked

#

Contradicting Rolle

proven elk
#

when a or c is a zero right

scarlet sequoia
#

When both are zeroes of f (reasoning by absurd)

proven elk
#

this shows the other cannot be a zero

left trail
#

ok I see all of this now but wasn't the only way to set them equal was by making a and c 0 which means that there could only be one point to begin with

proven elk
#

it lets you conclude that they must come from equal inputs

#

two different inputs can produce a zero

#

we have shown that two zeros must be the same zero

#

they cannot be different on this interval

#

you can rearrange the contradiction proof to obtain a converse proof that involves showing f is injective on the interval

#

which lets you conclude the uniqueness of the zero directly as a special case

left trail
#

ok so we start with a and c and assume rolle. Then we obtain -1 and 1 for our zeros of f'. But we don't know that it is outside of [a,c] until we know that a = c = 0 and that we would have to do by directly.

#

What I dont' see is how we can say that -1 and 1 are not in the interval of [a,c] without knowing what a and c are which would show us that they are the same

proven elk
#

Then we obtain -1 and 1 for our zeros of f'.
Then we use the fact that -1 and 1 are the only zeros in [a, b] and neither is in (a, b)

left trail
#

where does rolle theorem say that. it only says that the derivtives must be defined at each of the poitns in (a,b) not be (a,b)

proven elk
#

ok so we start with a and c and assume rolle
We start with c being some zero and then consider [a, c] and [c, b]

proven elk
#

To contradict rolle's you must show that f' has no such zero

proven elk
#

Because we are trying to prove this is the only zero, we need to check two other possible intervals that could contain a distinct zero.

#

We have to contradict Rolle's for both.

#

Once you've shown there's no zero of f' in either (a, c) or (c, b) then Rolle's (by contradiction) lets you show every d in either [a, c) or (c, b] must have f(c) != f(d) because c != d.

left trail
proven elk
#

The objective at that point is to show the opposite.

#

Any zero on [-1, 1] of f is unique.

left trail
#

but do use rolle we have to assume the opposite

scarlet sequoia
proven elk
#

to use rolle you have to prove f' contains no zeros and then you know that f(a) != f(c)

scarlet sequoia
proven elk
#

i am trying to think how to make it work because it should

#

you can just convert converse proofs to contradiction proofs

#

but the prose is escaping me

scarlet sequoia
#

showing that something can't work

#

by assuming it does work

proven elk
#

let's say there are two zeroes of f i.e. c != d and f(c) = f(d) = 0

left trail
#

wait wait I am now getting confused

#

yes this I understand. Then our objective is to show that f'(x) = 0 but x not in (c,d)

proven elk
#
Rolle's: If f is continuous on [a, b] and differentiable on (a, b) and has f(a) = f(b), then f' has a zero in (a, b).

Then f' has a zero in (a, c] or [c, b), contradicting f'(d) != 0

#

||There i found the confusion||

left trail
proven elk
#

and the case analysis goes and says "d must be either above or below c"

#

then no matter which we can use rolles to contradict that

#

there i got u the contradiction version instead of the converse version

#

had to think about it for a little while

left trail
#

I still don;t see how we show this

proven elk
#

not quite accurate there i'll help fix that up