#help-0
1 messages · Page 4 of 1
ok
It’s not really important how long it actually takes, it’s constant time, which you’ll see soon
So that loop we get $\sum_{j=i+1}^{n} 1.5$
Learath2
Putting it all together we have $\sum_{i=1}^{n-1} (1 + \sum_{j=i+1}^{n} (1.5) + 1)$
Learath2
Yep. Now let’s start using some summation rules to simplify this
yes lets
First one I’d like to use is $\sum_{i=1}^{n} c = nc \text{ where } c \in \mathbb{R}$
Learath2
I think this one is simple enough, no?
We are adding together $n$ $c$’s. Which is nothing but multiplication
Learath2
oh i guess i've been evaluating these wrong. i thought summations were inherently in the form 1+2+3...+n
aren't they? otherwise why wouldn't one just use multiplication in the first place
They aren’t. That’s $\sum_{i=1}^{n} i$ e.g.
Learath2
what is the i=1 in the above statement
This is exactly how the authors handled that left summation after the split. If the inside is a constant, it’s nothing but multiplication
this one
you could see where the variables being in different places is confusing me
i is called the index of summation, 1 is the lower bound
meaning it goes down to one or you need at least 1 number or what
We start with i = 1. At each step we add 1 to i while it’s still smaller or equal to n
Think of it like a for loop.
for(int i = 1; i <= n; i++)
then what does this i represent if we aren't incrementing
We increment i, but our term we are summing doesn’t involve i. So it doesn’t change
We take n steps until i = n. And at each step we add a c to the sum
Yep
ok ok
Ok, how about you use that rule to get rid of the summation we have for the inner loop?
which i can see is 25, 5*5
well i don't understand how the j=i+1 would increment or what n is so but i guess it'd be 1.5n
Well we start at 1, we go until n. That’s n iterations. If we instead start at i+1 then we have i less iterations to make
n iterations - i iterations = ?
Yep, so after that simplification what do we have for the total time complexity?
Merge the +1s too just to clean it up more
ok i guess i don't see, i don't know why it wouldn't instead be n + i
Instead of i and n, put random numbers there and it might make more sense
Going from 1 to 10, we’d take 10 steps, if we start at 5 instead, we’d take 4 less, no?
Ah, that’s the problem with the steps analogy. We do evaluate the sum at the upper bound too, so that’s 1 extra term
As in it takes 9 steps, but there are 10 terms to our sum
right right i sort of lost track in whats going on, we're evaluating the overall summation term which right now stands at 1+ 1.5n +1?
It’s not 1.5n. If j started at 1 it would be. But we are starting i later than 1
Instead of n terms, we’ll have (n-i) terms
Think of it with numbers if the symbols are confusing
What’d happen if you added 1 to the lower bound? What if you added 2?
So by adding 1, we have 1 less term to our summation
If we added 2 we’d have 2 less. If we add i we’ll have i less
i get that but yeah the j throws me
anyhow let me try to evaluate the summation in the inner part
I’ll need to go for dinner in like 3 minutes :/
Put the 1s together aswell and we have $\sum 2 + 1.5(n-i)$
Learath2
Now we use the sum properties to slowly split this apart. We can do $\sum 2 + \sum 1.5(n-i)$
Learath2
You can also take a scalar factor out of a sum so $\sum 2 + 1.5 \sum (n-i)$
Learath2
The only thing that remains is using the properties of landau symbols (O, o, big theta) to get rid of the constants. A scalar factor and a constant don’t change the time complexity.
$O(a + bn) = O(n)$ thus we arrive where the authors arrived
Learath2
Thus they ignored constant stuff from the very beginning
the answer is theta(n^2)
i could see this being the justification for the inner loop being equal to theta(n)?
but i don't understand in their answer where the n^2 terms come from or anything past the first or second expression
the answer is here:
in fact this makes it seem as if the entire complexity comes down to the inner loop and nothing else
bc as you showed, the inner loop is equal to the n - i summation term
shouldn't it then be above the summation symbol? what makes it summation(n - i)
i really need to understand these summations bc they get much more complicated
how many iterations in the j loop on line 3?
so that's the inner loop
so they're just ignoring all the constants and linear runtimes associated with any other line and declaring the entire algo runtime equal to the inner loops complexity?
and furthermore how does that one summation on the left expand into all the terms and expressions following the equals sign
what all other constants and linear runtimes are you talking about
there's only one operation inside the j loop
i mean the rest of the algorithm that isn't the inner loop
have you taken calculus?
yes but i don't remember anything
@alpine sable Has your question been resolved?
@alpine sable Has your question been resolved?
i still don't get this
specifically what
in the videos it is obvious how to evaluate the summation. here it is not straightforward what they did or why
this is the value of the inner loop
forget about the pseudocode
and also the n-i here
i just want to know how to loop at that summation and evaluate it or expand as they did
right wouldn't that just become n-1 automatically
when i = 1
you need to understand this to understand the solution
this n-1 comes from line 1 in the algorithm
again if we just forget the code for a second, i'd like to know if given that first expression, how it becomes n(n-1) - summation(i) which i understand to be the rule that you can break apart terms added or subtracted in a summation. ok fair enough. but to my eye it looks like they multiplied n*(n-1) and substituted in the summation of i term for i, which seems to be two different operations
oh
you can factor constants out of a sum
(n + n + n + ... + n) = n * (1 + 1 + 1 + ... + 1)
since there are (n-1) terms, adding 1 that many times is (n-1)
it looks like they multiplied n*(n-1) and substituted in the summation of i term for i, which seems to be two different operations
did you follow this?
do not think of it like that. that's only true for starting index=1
i understand it when i plug numbers in yes. i cannot see what's going on when there are so many variables
?
thats what i'm referring to. yes i understand that 5+5+5+5 = 5*(1+1+1+1)
do you understand why
$\sum_{i=1}^{n-1} n = n(n-1)$ now?
riemann
no
can you simplify the last part here?
its a summation right
using this
summations are typically something + something different + something different, otherwise we would simply use multiplication
therefore, why is there any multiplication involved at all, when i evaluated the summations in the khan academy video it was k/2 + k/3 + k/4 + ... + k/n
so you need to understand how summations work generally
what's 1 + 1 + 1 + 1 = ?
4
observe that 4 = 5-1
so your example 5 + 5 + 5 + 5 = 5 * (5-1)
which is the formula in the screenshot for n = 5
what screenshot can you copy the link pls
$\sum_{i=1}^{n-1}n = n(n-1)$
riemann
the first part here
how do you know when i = n-1?
how do you know what?
nvm i just saw how to do it on paper
with 5 i = n-1 when i = 4
ok i think i'm getting it. the way math people think is wild. i would never look at any number added a bunch of times and think "why that's simply the number times the expression that number minus 1!"
anyway.. i guess that's how we get the first term, and then i isn't manipulated at all?
.close
Closed by @mental meteor
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
How is du/2x a product?
$\frac{1}{x} = x^{-1}$
illuminator3
I'm pretty sure I explained to you that all the terms are getting multiplied together
i know I didnt understand that one part very well and i didnt think i should dm you... can i ?
No
you should understand how multiplying fractions work
It's literally what it means, all the terms are getting multiplied
Same idea as 2x(3c)4d
That's a product of terms
$2x(3c)\frac{3}{4d}$
dldh06
That's a product of terms
watch this
https://www.youtube.com/watch?v=93Y8hCoOAj0
This video explains how to multiply algebraic fractions. It goes through a range of examples and is ideal for GCSE Higher or Core Maths recap.
Practice Questions: https://corbettmaths.com/wp-content/uploads/2013/02/algebraic-fractions.pdf
Textbook Exercises: https://corbettmaths.com/wp-content/uploads/2013/02/multiplying-algebraic-fractions-pdf.pdf
@cedar field Has your question been resolved?
Closed by @cedar field
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
.close
Closed by @mental meteor
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
i dont get it
little tips for vectors, the length of your vector is the diff, between both X's and Y's (so Xnum2 - Xnum1 is = the X length)
but why do we need the x length for?
You'll want to draw your vector as the hypotenuse of a triangle
Then, find the angle of said triangle
x-length is, of course, one of the triangle's legs
.close
Closed by @faint hamlet
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
!15min
Please only use the <@&286206848099549185> ping once if your question has not been answered for 15 minutes. Please do not ping or DM individual users about your question.
Closed due to the original message being deleted
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
Hello! I need help finding the value of m for which f(x) = -x^4 + 4x^3 + 8x^2 + m has two real solutions on the interval of [-1;-4]
can you calculate the determinant ?
having 2 real solutions means that ∆ ≥ 0
shit i didnt read that my bad
!15min
Please only use the <@&286206848099549185> ping once if your question has not been answered for 15 minutes. Please do not ping or DM individual users about your question.
thanks for reminding me, you are really useful, if you paid attention you'd see it's been more than 10 minutes, no one answered my question
Hi again
Maybe there is a way to use it by doing a substitution first I am not sure yet
Just to clarify, when you solutions, do you mean roots?
yes
Ok
i know how to find the range of m for the roots on the graph, but i have no idea how to do it analytically
Ok, I will have a think
15 minutes is how long you must wait. Not ten. Maybe you can pay attention
i asked the same question on another thread, waited almost an hour for an appropiate answer, no one took hold, and I had to close the thread
Well that doesn’t matter. You still must follow rules even if you make a new thread
okay, i'm sorry
@bleak cape Has your question been resolved?
Sorry for the delay, just a moment
No problem!
So I have a slight issue with this problem, are you sure the interval is [-4,-1]
Yeah so that won't work imo
okay so, basically it says
let f(x) be 8x² + 4x³ - x⁴ + m
find out
a) local extreme points(i don't know if i translated it well, but it's the points where the function changes its growth(increases/decreases)
b) real values of m for which f(x) = 0 has two roots on the [a,b] segment, where x = a and x = b , a<b, are maximum local points of f(x)
i derived f(x), found that -4 and -1 are maximum points, and 0 is a minimum point
so we work with -4 and -1
The maxima are at x=-1 and x=4 I think
Well it is helpful to sketch the curve here and reason from that
So as you move the curve up and down, between what values of m can you get two real (and I'm assuming distinct) roots
yes
that's what I did with the graph
but is there any way to find it out analytically?
without looking at the graph?
just mathematically
Honestly, I personally default to drawing the graph for these questions as the geometric intuition is faster than looking for an algebraic reason. I'm sure that there may be one, but honestly I don't see it rn, and its mechanism may very well mirror the geometric explanation anyway
Sorry for not offering a more concrete answer
Noo that's good
don't apologize
could you give me a tip on how to sketch a graph better?
or do i just take values from each range and put them on a graph
Well after you have plotted the coordinates of the maxima and minima, and you from the fact that the x^4 coefficient is negative that it must be going to negative infinity as x increases then all the roots kind of just place themselves
ohhh
When you link eveything up
The shape of this kind of graph can be deduced from knowing the coordinates of its stationary points and what type they are (max min inflexion etc)
Then you just pass a curve that has all of these features
but basically the line which intersects the graph is the solution right?
and the slider is the range
Yeah basjcally
I did it so the whole graph moves up and down, but it's thebsame thing
But again, you can always calculate the derivative and determine he nature of the statioary points by hand
yes
Yeah
damn, wish me luck tomorrow
You have somehing?
yeah, i have an entrance exam
Oh wow, ok
these few exercises ive asked you to help are the first ones, 1 to 4, but the rest is probability which im good at
Well best of luck luck
but calculus, ehhh
Thank you!
Ok, well is there antthjng else I can help with
No problem at all, sorry if my explanation for the drawing was a bit iffy, i can elaborate there if you like
noo, i understood everything
thank you for the help, i really appreciate it
have a great day!
That's alright, good luck again
+10 social capital
.close
Closed by @bleak cape
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
is sinx +1 the same as 1 +sinx
sorry quick question
np
Closed by @thorny pulsar
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
Because it endlessly repeats so there’s no need to continue it?
Bro we didn’t make it we don’t know
They just chose to do so
Bro stop asking we don’t know they just did that
I’m literally a helper not the person who makes your assignments
We don’t know literslly we can’t answer this
They chose to do it like that there’s no specific reason
I’m literally a helper
Waste of time
.close
Closed by @iron mulch
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
lets chill
That’s a mod^
both of you chill
Enough already pls
✅
the stopping at 6pi is arbitrary
I’m a volunteer can’t be fired
you absolutely can be, fyi
@fathom sequoia last chance, pls stop harassing users
there's no reason it's 6pi and not 4pi or 8pi or whatever
i meant as I’m not like a job fired more like dismissed
@fathom sequoia come back in 24h
Closed by @iron mulch
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
this is kind of a silly question, but its been a long time and im not exactly sure how to factor it
i tried using online calculators but they gave me different answers, the correct answer should be F=25.62
Why not replace the sines and cosines with their respective values
That oughtta clean things up a bit
I mean, yeah
Distribute out the 1/0.15
Move all the terms without an F to the other side
To some wacky factoring and solve for F
i think im confused about what he moved to the other side
and how the sin 50 was divided
The terms which are multiplied by F
Then factor out F and divide other side by the factored out terms
take it one step at a time
get terms with F on one side and terms without F on the other
this might be less intimidating
$$a(Fb-k)-c-Fd=0$$
ℝamonov
okie ty, I’ll take a look once I’m home
@oak storm Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
I'm trying to figure out the rules of dividing one term by another
Like 2x^2 +3x+4/2x-7
What's long division?@last ether
And for that matter what do you mean with breaking up terms?
Long division is like
Well you can Google that
It's stupid dumb to explain over text
Ok
Breaking up terms is like $4x \Rightarrow 3x + x$
Umbraleviathan
Which can make division easier as a fractional visual
Ooh, you mean polynomial division that you use for polynomials of third degree?
Closed by @slender granite
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
@last ether ...
How is du/2x being multiplied?
Oh yeah
That's because dx is kinda like a factor of the integrand
So when we replace a factor with something, that value something also becomes a factor
What happens next is that (4x)/(2x) = 2
So it becomes $\int 2u^3du$
Umbraleviathan
and what does this do?
I don't understand what you're confused about this. It's literally a product, all the terms are getting multiplied together
You solve it
how is it a product? thats my question?
where is the multiplication, how do I find it?
You don't find multiplication, it's just multiplication
Like 2x(3)4x, those are getting multiplied, right?
3 is being multiplied... it has brackets.
So is the 2x and the 4x
Not all the terms needs brackets
Brackets just help make it easier to denote it's multiplication
2x(3)4x is the same as (2x)(3)(4x)
so 2x(4)3x 5x 2x. would everything be being multiplied.
I wouldn't suggest using spaces to denote multiplication, it doesn't make it that clear
Brackets or the multiplication sign is the best option
For fractions, you don't need to include brackets if it's clear enough, like $2x\frac{1}{4x}$
dldh06
That looks like a product
And $\frac{1}{2x} \frac{1}{3x}$ is clear enough that it's a product
dldh06
2x(3)4x so how would you be sure that its multiplication?
addition, subtraction or division
No
why not
Because there's no addition, subtraction, or division sign used
what would you do with 4x
As I mentioned, using spaces to denote multiplication doesn't provide clarity
Same idea as 2x, that term itself is a product with no brackets
It's 2 * x, is it not?
like in 4x(u)^3 du/2x there is no addition, subtraction, multiplication and division between du/2x and u^3 like 5 between 4x?
Well there is division because you're multiplying by a fraction
The division is clearly defined with the fraction bar
Because of multiplication properties, (4x)/(2x) -> 2
there isnt a space in 4x(u)^3 du/2x
That's a fractional bar
yes i know
How would you explain that du/2x is getting multiplied with the rest of the terms?
ye how?
Because this was the 3rd I've explained it
It's literally a concept of multiplication
Here
$$4x(u)^3\frac{du}{2x}$$
$$4x \cdot u^3 \cdot du \cdot \frac{1}{2x}$$
$$4x \cdot \frac{1}{2x} \cdot u^3 \cdot du$$
$$\frac{4x}{2x}\cdot u^3 \cdot du$$
$$2\cdot u^3 du$$
Bruh
Have you seen $2x$ being denoted as $2 * x$ or $(2)x$ or $2(x)$ or $2\times x$ or $(2)(x)$? They all mean the same thing
dldh06
Umbraleviathan
Closed by @cedar field
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
how do i calcualte the probibility of winning in rock paper sissers 10 times in a row
Depends on the number of people u are playing with. If its just two people, then its 33%. Winning 10 times in a row is (1/3)^10
Closed by @versed root
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
shouldn't theta be 60 degrees? It says it is a regular pentagon for inner and outer.
ohh no
(n-2)x180
regular pentagon is composed of 5 equilateral triangles
thats the formula for shapes angles
oh mb
and then u divide by 2
yeah
if u do that u get 54
and the triangle u get should be an iscoceles with 54, 54 and 72
now we need to the bottome bit
im using sine rule to find that
but im not sure how to implement it
ive forgotten how to
no it isn't 
okay so you start by using sin rule
yeah I got confused for a sec mb
cos 54 = x/17.01
x is half the distance of AC
so after u find x times it by 2
waiti i got the answer
i did sine rule
i got 17.01xsin(72)/sin(54)
can osmeone put this in the calc
my calc is broken
ohh thx
yep ima close this channel
thanos for the help
i was just extra dumb today
.close
Closed by @lone hamlet
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
@wary stream Really sorry for the ping but yesterday you said this... Why is it divided by 2?
if someone else wants to help just tell me and Ill tell you background knowledge.
anyone?
after learning how to multiply fractions, you need to learn how to simplify fractions
ok?
so can you help with this first?
Closed by @cedar field
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
Given an IVP, $\frac{dy}{dy}=\frac{1}{(y+2)^2}$ and $y(0)=1$ state the domain of definition of the solution
lirmirit
so i managed to get the solution $y=-2+\sqrt[3]{3t+27}$ but since $y$ cannot equal -2, I got the restriction that $t\neq-9$.
lirmirit
however, the answer says that the domain is $t>-9$. why can't $t$ be less than -9?
lirmirit
(typo: the first msg should say $\frac{dy}{dt}$)
lirmirit
do you know the domain of $\sqrt[3]{x}$ ?
riemann
isnt that just all real numbers?
,w plot x^(1/3)
Closed by @normal ingot
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
.reopen
✅
wait why is only the positive numbers considered to be the domain of cbrt
bruh
,w solve dy/dx = 1/(y+2)^2
yea thats what i got (with c=19)
alright no idea then. maybe something to do with t < -9 then y is multivalued
riemann
as far as i know, the solution still differentiable at t=-10
yea but that branch doesn't connect to the y(0) = 1 branch
without the derivative blowing up to infinity
does the solution have to be continuous?
solutions to differential equations need to be differentiable
Closed by @normal ingot
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
hi can someone give me an idea on how to start on this
i think a direct proof would be hard for me
should i try contradiction?
I assume that [n/2] means round, and therefore it will always round up?
Consider two different unconnected sections. Considering the degree that any random vertex must have, how many verticies must be in both sections, at least?
HellO
err im not sure
Some random vertex has to be connected to [n/2] others, so the section it is in must have at least [n/2]+1 verticies
wait why n/2 others?
Degree of any vertex is [n/2]
im sorry but why? cant the degree of a graph be 1
like if the graph has 50 vertices
there can be a vertex with a degree of 1
Not in this graph, by the question
okay yes
then the maximum amount of edges that G can contain is n(n-1)/2
Let's say there's two different sections. Then this graph would have 2[n/2] + 2 verticies
yea
If n even, that's n+2. Too many.
If n odd, that's (n-1)+2 = n+1. Too many.
This graph has more verticies than it has. Contradiction.
ahh we had to account for even and odd
Well, no, but that's a pretty easy way to show that 2[n/2]+2 > n
I can't think of another atm haha
okay so the idea is:
to prove by contradiction ill show p and not q
which in this case is every vertex has [n/2] and the graph G is not connected
so we split the graph into two, and since there must exist a vertex in both graphs that has [n/2] vertices, the entire left/right subgraph needs to have at least [n/2] + 1 vertices
uh wait
vertices
from there we add the vertices from both graphs and we will get 2[n/2] + 2 which is greater than n
okay i get
@stable night
Well, pretty close. We can't simply assume there's two subgraphs
I don't think "subgraph" is the right word for this, but I don't know what the word should be haha
hmm
why tho?
@stable night Has your question been resolved?
Would this suddenly be possible if there were 3?
I just threw out "let's pretend there are 2 sections"
Maybe something about 3 makes the contradiction go away.
wait why?
wouldnt there be even more vertices
whats the original problem
is it this?
yeah
when you say section do you mean connected componnet
i understand the proof, its just that idk why cant we assume theres two subgraphs
component*
do you mean 2 connected components
because (a) nobody said there can't be more than 2 connected components, and (b) this assumption is actually unnecessary
||let n = 2k + r where k ∈ N and r ∈ {0,1}, so that floor(n/2) = k
assume towards a contradiction that there exist two vertices u, v ∈ G with no path between them
in particular this means no vertex is a neighbor of both u and v at once (for if there were such a vertex x, we would have the path uxv go from u to v, which goes against our assumption)
both u and v have at least k neighbors each, as per the problem statement
but then the total number of vertices in the graph is at least k (u's neighbors) + k (v's neighbors) + 2 (u and v themselves) = 2k+2 > n
contradiction||
the n = 2k + r is for both odd and even cases rite
@stable night Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
Try factorising, perhaps
Factor the first fraction
Closed by @patent hedge
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
Help, what is this, I don't understand it at all
I'm supposed to use this somehow
@flat saddle Has your question been resolved?
mans learning enchantment language
@flat saddle Has your question been resolved?
Closed by @flat saddle
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
What is meant by pulling out a factor a? We can assume a and L are positive and also wolfram alpha end ups with sqrt(a^2 + L^2) when you assume a and L are positive. (https://www.wolframalpha.com/input?i2d=true&i=a+*+sqrt\(40)Divide[Power[a%2C2]%2BPower[L%2C2]%2CPower[a%2C2]]\(41))
So my question is how would you go from a * sqrt(Divide[Power[a,2]+Power[L,2],Power[a,2]]) to sqrt(Power[a,2] + Power[L,2])
multiply numerator and denominator by a
$a\sqrt{1 + (\frac{L}{a})^2} = \sqrt{a^2 + a^2(\frac{L}{a})^2} = \sqrt{a^2 + L^2}$
hsp
so a = sqrt(a^2) and you multiply both expressions with it.
Not sure why I haven't thought of this.. Thanks!!
.close
Closed by @lyric grove
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
(n-1)! = n! * (n-1) ?
plug in some numbers for n and see for yourself
@keen python Has your question been resolved?
in this case it should be (n-1)! = (n-2)! * (n-1)
we generally write that property as n! = (n-1)! * n or (n+1)! = n! * (n+1)
Closed by @keen python
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
When I use the chain rule to differentiate, my derivative is different to the one on the mark scheme
katie <3
mark scheme for reference
it looks like you've just differentiated the square root term and treated x^2 as a constant
i tried to do the dy/dx = dy/du * du/dx thing
$\frac{dy}{du}=\frac{x^2}{2}u^{\frac{-1}{2}}$
katie <3
$\frac{du}{dx}=5$
katie <3
where $u=5x-1$
katie <3
You can't really apply u sub here. It doesn't work out nicely, I believe. You have to use product rule
Then when you do chain rule, it just applied to the (5x - 1)^1/2. I don't think you did anything with the x^2
the problem here is you've assumed you can treat x as a constant when differentiating by u
Can you post your full work for clarity?
for this sort of problem the easiest way is to use the product rule
then to use it in this case you'll need to use the chain rule similarly to what you did
Closed by @delicate glen
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
I’ve got the parametric which is x=8t+4 y=5t+12 z=2t+15
But I’m not sure how to get to ii
Also the question is confusing to me haha like which line passes through that point
They'll mean your new line passes through that point
You need to use your parametric equations to find the direction vector of your line
(Your first one)
How do I find the direction vector though?
you can write the parametric equations in vector form
r(t) = at + b
a is the direction vector
Oh I see so direction vector is 8,5,2
Alright I know where to go from there
Thanks!
.close
Closed by @errant cedar
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
i generally perform well in all areas of math that i am taught but for some reason i just cant seem to grasp geometry and perform as well as i would hope to
is there any possible reason for it or could anyone point me to some resource for help?
what part of geometry?
Khan academy is a good website
Organic Chemistry Tutor is a good youtube channel
3b1b is also a good youtube channel, but idk if they have geometry
That’s more for advanced maths, not geometry
oh ok
i dont know just geometry in general
try Khan Academy ig
@gilded vessel Has your question been resolved?
Closed by @gilded vessel
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
could someone help me go through this basic rational equation question
i've been reviewing quadratic equations but before i do that i want to start with non-quadratic rationals
The problem is that x in the denominator, so a good idea might be to start by multiplying both sides by ||(x-2)||
yeah
So it simplifies and it's not a problem any more
Yes
yes, keep going
okay, and now i should get rid of the constant
(put 5 on the opposite side)
so 5x-5+5 = (1/3)(x-2) + 5
?
sure, that's legal
so here's where i am stuck
5x = (1/3)(x-2)+5
the thing i am thinking to do
is divide both sides by 5
legal but unhelpful
Bring every x term to the same side
i would backtrack to here and multiply both sides by 3
that would make it a quadratic
no, it would not.
if it equals 0?
ah okay lets try that
do i understand correctly that your logic is "if the right-hand side of an equation is 0 then it is a quadratic equation"?
yeah
this logic is incorrect
oh
where
my bad, i forgot about that property
where do you see a ^2 in 7x - 4 = 0
the name quadratic equation comes from latin quadratus which means square
that's what i am missing in my misconception
what makes a quadratic equation quadratic is the presence of an x^2 term, NOT one of the sides being zero...
yes, allow me to correct myself 😂
in any case
(also, to make it a quadratic you can't have any powers bigger than 2 to the x)
from here i suggest multiplying both sides by 3
yeah
then it would get very messy
yeah so,
15x - 15 = (x - 2)
ah crap
i got a unhelpful answer again
add 2 to both sides side
and now i got x = 15x + 13
there are still things you can do from here
like what
well... first of all you should've gotten 15x - 13 = x
so you need to fix that sign error on your part
but aside from that
why not subtract x from both sides
whoops
yeah, my bad
because then x dissapears?
what do you mean?
(-x + x - 2) = -x + 15x - 15
?
i'd rather go back to the place i was, i misinterpreted this as "do this instead of what you tried"
-x + 15x is not 15.
if you have 15 apples and give away an apple, you aren't left with the platonic number fifteen in your fruit basket.
you're left with 14 apples.
okay
and likewise, 15x - x is not 15, it is 14x.
ah i see whoops
so you have 14x - 15 = -2.
@next flax Has your question been resolved?
why does this person subtract the 4k to the right side instead of dividing it?
what do you mean?
(8k)/(4k) is not 2k
fuck
also keep in mind that you need to do things to BOTH sides
$\frac{4k-10}{4k} = \frac{8k}{4k}$ would've left you with a comparatively nasty fraction on the left.
Ann
in effect it would almost be a step directly backwards compared to the previous
while what you said is technically correct,
why did he/she decide to do 8k - 4k?
(8k)/(4k) is 2.
subtracting 4k from both sides (which you should not describe as 'doing 8k - 4k') would leave you with no terms containing k on the left.
which is a good thing, because generally an equation with the unknown appearing only on one side is generally easier to solve than when the unknown appears on both sides.
but i just don't understand where i was supposed to make the inference that this was the RIGHT thing to do
if i did what i did
i got k = 5
when the right answer is 2.5
i think you may have royally screwed up in a subsequent step.
it is impossible to tell where that happened without seeing all of your work.
or maybe, "what you did" was itself not valid at all.
if you can show your work then i can pick it apart.
there's also the issue of you apparently thinking that there is only ever one and only one right thing to do.
I tried doing it another way but it still left me with 5
alright i see the mistake
What is it
you didn't divide both sides by 4k properly
specifically you didn't divide the left-hand side by 4k
$\frac{4k-10}{4k}$ is not the same as $\frac{4k}{4k} - 10$
Ann
also there is another issue that is more notational in nature
but i did the latter ?
and you were supposed to have done the former.
you were supposed to divide the ENTIRE left-hand side by 4k
not cherrypick one term on it and divide only that by 4k and leave the rest to rot.
well there have been instances where the latter would be acceptable
where and how do i make the inference that the former is the right thing to do ?
not literally as written there weren't.
when you divide both sides of an equation by something, you divide the ENTIRE lefthand side and the ENTIRE righthand side by that thing.
so in a sense the "former" in your symbolic conception thereof is always "the right thing to do"
even though the use of "the" to refer to something there need not always be exactly one of is questionable.
you ADDED a thing to both sides
Ah shit lol
addition isnt the same as division
youre trying to over-abstract
and you're falling flat on your face as a result
I think that’s reasonable
Lol
so wait (4k-10)/4k
is (2k-5)/2k ????
sure, you can simplify (4k - 10)/(4k) into that
how would you simplify it
for the purposes of solving this problem, it won't help you much.
but to answer your question as stated, you can simplify it all the way to $1 - \frac{5}{2k}$ maybe
Ann
(again, i must emphasize that this is losing relevance to the problem)
not really
i'm trying to understand how to get to -2.5
well i can show you how to get from 4k - 10 = 8k to the solution while also doing your step of dividing both sides by 4k at the start
is that what you want
yeah! i would appreciate so much
tbh i cant help but remark on the impression ive got from you
you seem to think algebra is procedurally rigid, like whenever you have an equation there's One and Only One Right Thing To Do,
and simplifications Must be done in One Particular Way and All Else Is Wrong,
and you, a mere mortal, are caught in the crossfire trying to understand wtf is going on
haha that's true
i just have preconceived notions on the way things work
right
and i think i should appreciate prealgebra a bit more
maybe it's good to unlearn those preconceived notions
because i think it would help me as you say
algebra is kind of malleable
i have a goal of next summer i hope i can do abstract algebra
like theres a big difference between a misstep and a fuckup
but that's a bit ambitious
whats the difference ?
when you make an algebraic move that makes your working longer but is not by itself invalid, that's a misstep
when you make an invalid move that actually breaks something, that's a fuckup
fuckups happen only in execution
a good step is just as liable as a misstep to get fucked up
i can correct it most likely
yes, a misstep can be recovered from
in the worst of cases, you can backtrack to just before the misstep
i.e. erase your work and start anew
a misstep increases the probability of a fuck up, right?
well
i guess insofar as your work becomes longer, yes
you have more places to fuck up in
also something to watch out for
if a step you're planning to take looks like it undoes the last step you took
it's probably a misstep
how do they know k -3 = 9 without knowing the answer? :/
They cross multiplied
If 6/(2k - 6) = 1/3, then 6(3) = 2k - 6
Dividing by 2, you get 3(3) = 9 = k - 3
@next flax Has your question been resolved?
they hid the step of dividing both sides by 2 after cross-multiplying
Closed due to timeout
Use .reopen if this was a mistake.
Please take a minute to participate in [our survey](#changelog message) if you haven't already!
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.
Can someone help me with 1 b please
Yeah it’s asking what the rate is after 40 mins
what unit is V
m^3
ok
thats not necessarily a rate but a value
but we do know how to find the instantaneous rate of a function right?
(the derivative)
Yes it’s dQ/dT
Yes
whats $\frac{dV}{dt}$
Normal Cat
??
i mean to calculate the derivative
if u think then u will notice that its just V'(40)
hmm
we know V(t) so we can use our magic calculus powers to find V'(t)
Yeah I see it now
Yup
so calculate the derivative
yup

