#help-27
1 messages · Page 396 of 1
Let's simplify it 'cause I think you're just having trouble parsing all the parentheses
ok 😎
Drop the forall, we know it's there implicitly, and drop all the (x) parts
So you only write A, B, T, E
ok dropping them mentally
No, write it
oh ok
Write it in LaTeX again, from scratch, after reading the question statement again
(A↔(¬B⋀ (T) ⋁ E)
No space after \
\lor not \or
Ok well now you have three opening parentheses and only one closing
,, (A \iff ( \neg B \land (T) \lor E)
Vaynn
Right, that first parenthesis is useless, that would be for the whole expression after "forall"
,, A \iff ( \neg B \land (T) \lor E)
Vaynn
Then do you understand that (T) is just the same thing as T?
,, (A \iff ( \neg B \land T \lor E)
that makes sense yeah
You keep undoing your fixes...
Vaynn
Right, now we can progress
Nel
Not Blacklisted **and **Temporary Pass **or **Employee
If I give you B = 0, T = 0, and E = 1, what result does that give you?
1?
Why?
Oh do you mean truth table wise?
I was guessing 0 + 0 + 1 = 1 lol
but if you mean truthtables
then how i got to that doesnt really apply
Not really, I mean what steps do you take to calculate it
So you dont mean truth tables?
I calculated 0 + 0 = 0, then I added 1 to it
im confused what you mean
I'm guessing, because I don't know what I'm supposed to do with B= 0 , T=0 and E=1
So I'm just summing all the values
So if I had given you B=T=E=1 instead you'd have said 3?
Ok I didn't realize you didn't know what those symbols do
thats maybe another way id look at it
ohh
False and true
Ok but I don't think you have a truth table for that whole expression
good point
If you want to think in terms of truth tables, you can, but you can only use them on basic parts
So for example the result of A AND B is 1 if both A and B are 1, 0 otherwise
yes
That's a description of the AND gate, aka a truth table
Now if you have (NOT A) AND B, you can't use that truth table directly
You first need to do the NOT A part, right?
right
And you do that with another truth table, namely NOT A is 1 if A is 0, otherwise it's 0
Now, what steps do you take to calculate $\neg B \land T \lor E$?
Nel
NOT -> AND -> OR
i guess
Since if you have to calculate NOT first, and not is connected to the and I suppose it makes sense you do and 2nd
then or last
is that what u mean
That's a reasonable guess but you see how it differs from what you said earlier about the original question statement?
You mean the version I had at the start?
This
yes
When you see an expression like that, you can be sure that the NOT is applied only to the B, but you can't be sure whether the AND is applied first or the OR is
I said here that it's typical to give AND a higher precedence, meaning it gets applied first
But really you should ask whoever wrote the expression
And in the case you're the one who wrote it, well you need to fix it
So what you're saying is mine is ambigious whether it is and / or first?
Or are you saying I'm making the wrong one be applied first
It's ambiguous, and even if you use the "usual" precedence, it turns out to be wrong
i see
So I need to make it so AND is applied first
then or
is what you're saying maybe..?
No, OR first
why do I want or first?
I don't know why you're still having trouble with which should be first, you read the question statement
let me re-read the question
okok im back
So it checks
Not blacklisted -> Then if you have either pass or employee
Then checks if you meet both criteria?
Is that why or has to come first?
Like it will take the TRUE from the not and the OR
To make the TRUE for the AND to happen
so or has to come first
essentially?
Like
The condition for AND to be true is reliant on the output of NOT and OR
is essentially what I'm saying
And if you evaluate AND first how can you evaluate it properly?
it wont work
AND
/ \
NOT OR
/ / \
B T E
yes!
okkk okk
😎 we getting somewhere
So yes, the AND depends on the NOT and the OR
So do you know how to fix your expression now?
um
truthfully maybe not
but ill have a go
I would imagine I want it like this
So that B and OR will happen first
Yes
You don't need parentheses around the NOT B
because it is highest precedence anyway?
That symbol only applies to whatever is directly after
If you want to apply it to multiple things, you use parentheses
So like that i guess
Uh no you messed something up here
oops
oh wait yeah
i accidentally edited the wrong one
and screenshotted that
Like that!
You're missing a parenthesis but that's better
oh at the end
Yes
there we go
Why does it look different 
Even there before it looked more similar to the others
could i ask for ur professional advice
on the rules of converting 1st order into CNF
because im slightly confizzled
on how to do that
I'm afraid I need to go but check these out:
https://math.stackexchange.com/questions/214338/how-to-convert-to-conjunctive-normal-form
https://math.stackexchange.com/questions/99068/how-to-write-x-iff-y-in-cnf-form
thank u
🫶
goodluck with what u need to do!
i love how this server has cat emojis
thats so cute
(btw I see you opened a new chat for a new question; due to some recent changes, you don't have to anymore! Once you finish with one question, if you have another right after, you can ask someone with a green name to pin your new question, and keep the same channel)
oh
yeah i thought i was supposed to open a new one for every question
That's how it used to be, no worries 👍
When I say recent I mean like last week
XD

I'm going to read resources, but if anyone can advice me on turning into CNF then you're a beautiful person
I say read, but im awful at reading I'm gonna watch a yt video on CNF :p
I think I saw this in my book let me reopen it
Ah conjunctive normal form is what we call product-of-sums in computer science
Yes b is a great example
Sadly this is going to be nasty
But the process goes like this
- Turn all implications into 'or's
So see if you can remove the biconditional
From here
Implication -> or
Biconditiona -> or
also?
Not quite
So when we say an implication, we say "if p, then q" right?
What do we say if we have a biconditional
Coolempire93
ahh
We can split this up into two halves
p if q and p only if q
Do you see how I got there
Biconditional -> two implications -> ors yes
thats a bit confusing the 2nd step
Do you know how to write $p \implies q$ with or's
Coolempire93
So you would have this for the first part essentially
not entirely 😅
Mm not quite
We'll come back to that though
oh no?
Right after I mention how to do this
Which is
$p \implies q$ is equivalent to $\neg p \vee q$
Coolempire93
So we can turn any implication into an or
do you think i remove the negate
Yes
since the negation of a negation would just be positive yes
ok makes sense 😎
So here's how a biconditional looks
$p \iff q$ is the same as $(p \implies q) \wedge (q \implies p)$ is the same as $(\neg p \vee q) \wedge (\neg q \vee p)$
Coolempire93
So the brackets was bad?
(And you can see that the last part is in CNF here already)
its ok now...?
Yes but this isn't what's written at the top
wdym at the top
Here you have the proposition $\forall x (A(x) \iff \neg B(x) \wedge (T(x) \vee E(x))$, which is really $\forall x (A(x) \iff (\neg B(x) \wedge (T(x) \vee E(x)))$
Coolempire93
So when we do step 1 on this, we get
$$\forall x (A(x) \iff (\neg B(x) \wedge (T(x) \vee E(x)))$$ is $$\forall x \qquad (A(x) \implies (\neg B(x) \wedge (T(x) \vee E(x))) \wedge ((\neg B(x) \wedge (T(x) \vee E(x)) \implies A(x)))$$
Coolempire93
👀 thats so long and scary
wait so how do u do it
i wanna know the pro method since i gotta do this gang 💔
Once we finished here I would've rewritten our original proposition so it was in this form
ohhhh
So all of the left side would be P and all of the right side would be Q
and hten you would've replaced all the real vlaues with p and q
got it 😎
smart method

The original proposition: $$\forall x (A(x) \iff \neg B(x) \wedge (T(x) \vee E(x)),$$ which is really $$\forall x (A(x) \iff (\neg B(x) \wedge (T(x) \vee E(x)))$$
I would rewrite it as $$\forall x (A(x) \iff P(x))$$ where $$P(x) = \neg B(x) \wedge (T(x) \vee E(x))$$
Since A is by itself I don't actually need to turn it into a variable
Coolempire93
See if you can follow what I did to get there
understood 🫡
Using the steps we established
ohh
thank you homie 🫶
I LOVE THE CAT EMOJIS IN THIS SERVER
OMG THEY'RE SO CUTE
😆
Okay let's see what you have for this now
oop im not quite done yet
Take your time, no problem 🙂

CSP I might have to leave soon are you familiar with conjunctive normal form/product of sums
ngl I'm just on here waiting for the chicken in the oven to get up to temperature
so um we'll see if I'm even here
I was going to substitute P and Q into the bottom formula

and hopefully that should work right
Good but you forgot B, and we won't be substituting yet 👌
chicken takes so long to cook 😔 it makes me sad
Good
And again an important note about what we ended with is that we are in CNF down there
also between the two (P -> Q) AND (Q->P)
(P -> Q) AND (Q->P)
Do you put an and between those two as well?
(well there's a typo at the very end, the AND between not Q and P should be an OR)
You have all the AND's in the places they need to be 👍 (save for the typo)
or no other way round
What am I looking at
P <-> Q
is
P if and only if Q
is
P if Q and P only if Q
is
Q -> P and P -> Q
Great
So now we did step 1 to remove all implications
ok got it 🫡
In step 2, we will simplify the inner expressions
In this case not P is just not A
There is nothing to simplify
But
Not Q has a lot
yes
So we need to simplify not Q
We have
$$Q(x) = \neg B(x) \wedge (T(x) \vee E(x))$$
so
$$\neg Q(x) = \neg(\neg B(x) \wedge (T(x) \vee E(x))) = ?$$
Coolempire93
I need you to apply negation to Q
So we can simplify
Damn this is actually a ridiculous one to give you without knowing how to do k-maps (interpreting the truth tables into CNF)
my lecturer is evil
you should see the proof he gave me
and keep in mind its my first time ever having to do a proof
4 variables is a lot and expanding out across the or's here is going to be a lot as well
I don't think I'll be able to explain the whole thing at once here because I have to go 
If you post it in #proofs-and-logic though either someone will come along and explain or I will later tonight
😔 no worries gang ❤️
ill try my best 😤
De Morgan's Law $$\neg (P \wedge Q) = \neg P \vee \neg Q$$ and $$\neg (P \vee Q) = \neg P \wedge \neg Q$$
Coolempire93
But if he didn't teach that then this problem is impossible
And once you have everything together, step 3 is to distribute (so turn all the inner parts into CNF using this law: $$A \vee (B \wedge C) = (A \vee B) \wedge (A \vee C)$$ which is the central law of converting to CNF
Coolempire93
This whole process with the previous two steps is so we can get to a form we can apply this central law to
So the top two statements are equal and the bottom two statements are also equal
got it
So anywhere I see that I can turn it into the other one
You'll need it even just to do this
And im assuming my goal is to get to ones behind the equal
Yes
understood 🫡
Step 2 'simplify' is essentially: move all negations so they are beside a proposition
One of your variables that is
No negations over a parentheses
Once you have that you can apply the central law to all of the parts
e.g.
wait whats teh central law
$$(A \vee (B \wedge C)) \wedge (C \vee D) = (A \vee B) \wedge (A \vee C) \wedge (C \vee D)$$ and now we are in CNF
Coolempire93
central law
ohh
Basically the way to turn an or (disjunction) into a conjunction (and)
So now you can turn any dijunction into a conjunctive form
And it's normal once all of the outside operations are conjunctions
Yeah evil problem
😔 evil
@sullen osprey Has your question been resolved?
Would this be negated P?
Which would be negated P I'm not sure if the all x thing translates well into CNF or not
Acc im not sure where to go from here 😭
@sullen osprey Has your question been resolved?
<@&286206848099549185> 🥺 🫶
#proofs-and-logic I've posted this here; since this isn't getting much traction I'll close this and do a different question
.close
Closed by @sullen osprey
Use .reopen if this was a mistake.
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.
how to do part b
ik the answer is 112pi/3 for part a
but im getting this for part b which isnt the same number
draw the shape
notice how there is a concavity
ok wb it
do you know what your integral is integrating?
the top branch volume
i tried doing (top branch)^2-(bottom branch)^2 in the integrand but that also gave a different number
graph 2+sqrt(x-1)
ok, so when you integrate that function (with the pi r squared stuff) what volume are you making
any ideas?
the volume of that piece
there are a couple of ways to get what you want
yes, but that will get you the part that has been cut out
wait
i see what ur saying
let me try hold on
$\pi\int_0^14^2\dd{x}+\pi\int_1^5\pqty{(2+\sqrt{x-1})^2-(2-\sqrt{x-1})^2}\dd{x}$
Jash
are u suggesting that cuz i already tried that
youre so close
what that does is get this
OHHHH
yeah, you have to break it into two pieces, the top branch and bottom branchj
4*4-THAT INTEGRAL
yeah, or you could take the whole cylinder and subtract that piece out
what cylinder
the one you get by revolving y=4
oh ye thats what i meant by ths
yup
Closed by @viral rapids
Use .reopen if this was a mistake.
decided to make this just because
how tf
desmos 3d
lol thats sick
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.
I can see where you got t1+t2=2, but what about the other two?
By the symmetry of equilateral triangle
???
What does the symmetry got to do with this?
all you did is get t1=t2=t3=1/2
thats a degenerate triangle
aka a point
you dont want that
You have the slope of one side
yes
find the slopes of other two sides
and then use the slopes and find the similar parametric equations for the other parameter pairs
I found the slopes of other two sides in parameter
But when applying m = 2/t+t' for the corresponding sides it is giving me 2=2
@normal bolt Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
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.
probs stupid simple question I forgot from algebra but what am I supposed to do when the x is in the denominator
is it divide or multiply
multiply by $\frac x{\tan 19^\circ}$ on both sides.
It will cancel out neatly and you will get your "solution" for x.
There are other ways but this is the most direct one.
thank you Dexter
np
.close
Closed by @verbal pasture
Use .reopen if this was a mistake.
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.
Number 9
@hollow heart Has your question been resolved?
@hollow heart Has your question been resolved?
ig there's a typo in qsn
for the given answer, there must be a 's' in numerator
Closed due to timeout
Use .reopen if this was a mistake.
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.
anybody able to offer some help
what have you tried?
since i've got a, b, and the angle in between them i can use the law of cosines right
Yes
Yes, well use it to find A
and you can get B from angle sum
(since a isn't the longest side, you wont have to worry about ambiguous case when determining A)
going to send a few more rq
so...
A = 222
B = 200
for resultant force i would take (222)^2 + 200^2
don't forget to sqrt
got it
for angle B would i take tan(200/222)
then for sin(a) i would take sin(222/299)
the 299 being what i got for the resultant force
and tan(B) would it be tan-1(200/22)
you're mixing up the trig function with their inverses
so for angle B it would be the inverse?
trigfunction(angle) gives the ratio
inversetrigfunction(ratio) gives the angle
so to find angle B it would be tan-1(200/222)
yes
and then for tan(B) it would be tan(200/222)
tan(B) would just be the ratio you used / applied the inverse to to get B
hm
don't overthink
@hidden rain Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
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.
What are aleatory variables used for in probability?
the wikipedia article is a good start
calculate the number of times heads comes up out of 10 tosses
he asked me to do it with random variables but I don't know if I did it right
X(>=8)={0,1,2}
what is the 2 doing there
sorry
ok the edited version makes even less sense
I need to see the probability of getting more than 8 heads out of 10 tosses. I have coded the set as X={0,1,2} where 0=8 heads, 1=9 heads and 2=10 heads.
why I started from the numbers at the beginning
it ultimately doesnt matter much but it will probably lead to errors
P(X>=8)=P(0)+P(1)+P(2)=(10!/8!2!2^10)+(10!/9!2^10)+(10!/10!2^10)
=7/128
I don't understand why I used the aleatory variable here, isn't this the same way of using counts and favorable sequences?
to find the probability I mean
then treat it as a way to have nice notation for what you want
for now
P(X>=8) encapsulates the entire result in very short notation
i think we can imagine a random variable as :
$\Omega$ all possible paths of the ball
alee
there are situation were it wont be as simple without a random variable
does this makes sense ?
yes
this is X>=1
with n = 2 and p = 1/2
X = number of heads in 2 coin tosses
every column is {X=k} and the height is P(X = k)
and the colored colums are 2 so P(1 <= X <= 2) = P(X=1)+ P(X=2)
@viral kernel Has your question been resolved?
thanks
Closed by @viral kernel
Use .reopen if this was a mistake.
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.
Q1 (b)
I wrote it as
xn = (-1)^n / (1+1/n)
I know limit of denominator converges to 1 and numerator is divergent
But from this information, i don't know how to reach the exact answer
-1^n flips between 1 and -1
Try 2 subsequence
Whats that
x_phi(n) with phi Strictly increasing, but ig if you're asking it means you shouldn't do it like that..
Some other way ..?
ig saying it "flips" is enough then, usual demonstration is supposing it converges, then all subsequence have to converge to this limit
@quartz bloom Has your question been resolved?
.close
Closed by @quartz bloom
Use .reopen if this was a mistake.
<@&286206848099549185>
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.
Hello, could someone check if this proof looks good please?
\begin{Lemma}
Suppose $A$ and $B$ are sets. Then, $A \subseteq B$ if and only if $A \cap B = A$.
\end{Lemma}
\begin{Theorem}
Suppose $C$ is a set. Then, there exists a unique $A \in \powerset{C}$ such that,
for every $B \in \powerset{C}$, $A \cap B = B$.
\end{Theorem}
\begin{proof}
Let $A \in \powerset{C}$.
Either $A = C$ or not.
Suppose $A \neq C$.
If $B = C$, then there is a $x \in B$ that is not in $A$.
So, $A \cap B \neq B$.
Now suppose $A = C$.
For any $B \in \powerset{C}$, we have that $B \subseteq A$.
By lemma 1, this means that $A \cap B = B$.
Therefore, $A = C$ is the element of $\powerset{C}$ such that for every $B \in \powerset{C}$, $A \cap B = B$
\end{proof}
Mor Bras
\begin{proof}
Let $A \in \powerset{C}$.
Either $A = C$ or not.
Suppose $A \neq C$.
If $B = C$, then there is a $x \in B$ that is not in $A$.
So, $A \cap B \neq B$.
Now suppose $A = C$.
For any $B \in \powerset{C}$, we have that $B \subseteq A$.
By lemma 1, this means that $A \cap B = B$.
Therefore, $A = C$ is the element of $\powerset{C}$ such that for every $B \in \powerset{C}$, $A \cap B = B$
\end{proof}
Mor Bras
@raven kayak Has your question been resolved?
@raven kayak Has your question been resolved?
.close
Closed by @raven kayak
Use .reopen if this was a mistake.
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.
how do we solve this, with n = 2013 and if it could be generalized to n it would be better
i tried it but got nowhere
Where did you get stuck?
uh wait gimme a minute imma send a pic
What is tan(pi/2 - t) for you?
-tan(t)
No that's not it
What's cos(pi/2 - t)
Yes
but then how do i proceed
?
alr imma be back in a bit !
is this correct?
Alberto Z.
Technically yes but you could find an easier way to write 1/(1+(tan(t))^-n) as Alberto is suggesting
i don't know 😭
multiplying top and bottom by u ?
what do u exactly mean by simplify
That's exactly it
and it gives exactly 1
yup now i understand thanks so much @sand dove @mystic scarab
❤️🩹
Exactly, that's the neatest approach, I'd say
Closed by @deft flower
Use .reopen if this was a mistake.
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.
How is it not indeterminate? o+ in the denominator tends to infinity
and o+ in the log gives -infinity, no?
So - infinity/infinity
Which is indeterminate form right?
Are you sure?
I mean I know im wrong I just dont see why
Hiiiii chartbit ❤️ (Or in this case chartBITE)
x tends to 0^+, so these will be small positive numbers, close to zero
not infinity
1/x tends to infinity as x->+0, but not x itself 
Ohhhhhhhhhh
I see my mistake
Ok thanks guys!
❤️
.close
<@&268886789983436800> again 
Closed by @viral lynx
Use .reopen if this was a mistake.
.(They're just trying to get me to say hiiiiiii to you
)
how you doing catbit 

.Also hiiiiiiii 

.Not too bad, I can't complain, hope you're good too 

.Doing very good myself, hope you took care of some of that stuff you said you would and that you hadsome very restful and much needed regenerative sleep 
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.
1+1 ؟
_ _
Closed by @acoustic leaf
Use .reopen if this was a mistake.

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.
for 30 how is he able lto get the second y derivative in the form it is written. I have found y'' = -2x(x+y)/y^2 but I cannot see a way to make x+y = y^-3
one sec I was diffing wrong
yet I still cannot see the simplification. You have -2(x+y^2 y'*y')/y^2 which doesn't seem to lead anywhere
nvm
.close
Closed by @robust bobcat
Use .reopen if this was a mistake.
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.
Solve this interval please
,rotate
It's of the form dx/(a+bx), so you can easily solve it, it will be something with ln
I tried solving it with substitution but I think the answer wasn’t right.
I just want someone else to solve it for reference sake just in case I am doing some silly mistake
What was your substitution?
Taking the denominator as t. dt= -k2tan theta dx
So
Modus
Yeah
It becomes
Modus
Yeah then it just becomes natural log of t
Ye
And then I apply the limits. I’ve done it correctly right ?
Yes, basically
Modus
For context this was to calculate the expression for capacitance in a given problem so I ended up solving it in term of tan theta but they did it in terms of d and a wherein tan theta = d/a so I’ll have to do the entire thing again prolly.
But atleast I integrated it right
Put tan(theta) = d/a (it doesn't depend on x, so it won't change anything)
It becomes somewhat complicated with the full expression
But I’ll have to see. Thanks for clearing it up though.
.close
Closed by @supple lily
Use .reopen if this was a mistake.
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.
Why can't I use the geometric mean theorem here to find length of segment PA?
It seems plausible to use PA = sqrt(13)
you can use similar triangles here
I know I can, but I'm asking why I can't use the geometric mean theorem here
It's just one thing I noticed
Because you don't have RP and PO?
Can you state the theorem you're referring to?
Closed by @last apex
Use .reopen if this was a mistake.
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.
Does my answer to this question ^ seem correct?
Closed by @sullen osprey
Use .reopen if this was a mistake.
✅ Original question: #help-27 message
\begin{tikzpicture}[every node/.style={circle, draw, minimum size=8mm}]
% Staff nodes (spaced vertically)
\node (Logan) at (0,5) {Logan};
\node (Jamie) at (0,3.5) {Jamie};
\node (Rowan) at (0,2) {Rowan};
\node (Taylor) at (0,0.5) {Taylor};
\node (Rudy) at (0,-1) {Rudy};
% Task nodes (spaced horizontally and vertically)
\node (Planning) at (6,5) {Planning};
\node (Publicity) at (6,3.5) {Publicity};
\node (Sales) at (6,2) {Sales};
\node (Marketing) at (6,0.5) {Marketing};
\node (Development) at (6,-1) {Development};
\node (Industry) at (6,-2.5) {Industry};
% Edges representing skills
% Logan: planning, sales, marketing, industry
\draw (Logan) -- (Planning);
\draw (Logan) -- (Sales);
\draw (Logan) -- (Marketing);
\draw (Logan) -- (Industry);
% Jamie: planning, development
\draw (Jamie) -- (Planning);
\draw (Jamie) -- (Development);
% Rowan: publicity, sales, industry
\draw (Rowan) -- (Publicity);
\draw (Rowan) -- (Sales);
\draw (Rowan) -- (Industry);
% Taylor: planning, sales, industry
\draw (Taylor) -- (Planning);
\draw (Taylor) -- (Sales);
\draw (Taylor) -- (Industry);
% Rudy: planning, publicity, sales, industry
\draw (Rudy) -- (Planning);
\draw (Rudy) -- (Publicity);
\draw (Rudy) -- (Sales);
\draw (Rudy) -- (Industry);
\end{tikzpicture}
Guido
there we go thats a better graph
soo is it bipartite
?
Review your definition.
Yes its bipartite, because it has no interset connections
None of the people connect
And none of the skills connect to eachother either
Good shit
So is what I posted earlier true
Like this is correct for both
Yes
ok cool 😎
@sullen osprey Has your question been resolved?
Closed by @sullen osprey
Use .reopen if this was a mistake.
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.
Counterexample? What's that? How do I do that?
Prove or give a counterexample: If 𝑈 is a nonempty subset of 𝐑2 such that
𝑈 is closed under addition and under taking additive inverses (meaning
−𝑢 ∈ 𝑈 whenever 𝑢 ∈ 𝑈), then 𝑈 is a subspace of 𝐑2
.
if it were R1 instead of R2, could you find a counterexample?
As for what a counterexample is, it is a case where the opposite holds. If we're trying to prove the statement true in general but we find one case where such a U is NOT a subspace of R2, then the statement fails in general and thus not generally true.
@bitter garnet Has your question been resolved?
.close
Closed by @bitter garnet
Use .reopen if this was a mistake.
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.
Please post images (such as PNGs or JPGs) of the question rather than other filetypes such as PDFs which have to be downloaded. Non-image downloads can potentially contain viruses or other security risks.
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.
either way it seems to be pirated content
alright I'm out
lol at .gg/exams watermark

well either its a leak, or its a pirated copy of someone else's mock they wrote
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.
<@&268886789983436800> spam
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.
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.
help
i was looking for questions on my prep for selective school and i need explanation
<@&286206848099549185>
.close
Closed by @humble sleet
Use .reopen if this was a mistake.
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.
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.
back again, if my whole number is negative 3, when i put it over one for slope do i keep the one positive?
so if the slope is -3/1 would i go down three then one to the right
or make the 1 negative and go to the left
i think i know the answer i just wanna double check
whether you go 3 down, 1 right OR 3 up, 1 left you end up making the same line
yes but im asking specifically if the numerator is negative
like im asking if its neg three as a whole number and im putting it over one does the one stay positive
bcs -3/-1 isnt the same as -3/1
Soosh
for slope u keep the one positive right? im just tryna make sure im moving the right way
you can move the negative sign around, but don't introduce a whole new one if thats what your question is, that would be incorrect
okay thanks!
are you asking how to write down the answer to a "find the slope" question? or about the graphical procedure of doing it
for example my equation is y = -3x -1
so when im doing the slope to graph im asking do i do -3/1 (keep one pos) or make the entire fraction neg (-3/-1)
im thinking to keep 1 pos but i keep thinking too literally when im actually solving it and i wanna double check
like would i go down 3 to the right 1
and not down three to the left 1
-3 means (-3)/1 with one negative only
(-3)/(-1) would have the negatives cancel out and become positive 3, which is the wrong slope
i thought so ty
The slope is the amount you go toward the positive y over the amount you go toward the positive x
Positive y is usually "up", positive x is usually "right"
If you go away from the positive direction, you're going negatively in that direction
Closed by @idle citrus
Use .reopen if this was a mistake.
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.
how do i determine this type of point
do u know what f(x) is or do u only have the graph?
do you mean "how do I determine whether a point is a saddle point?"
i just need to know how you know if it is a sattelpunkt
yes
-# is that german
yes
well the first derivative has a minimum at that point
which you can see in your image
and how do you find minimums?
i know 2nd derivative has to be > 0 for it to be a minimum
basically we look for
f'(X) = 0
and put in the same x for f''(x)
if its >0 it is a minimum
its a minimum of f, yes
if its < 0 it is a maximum
how do you check whether x is a minimum of f' ?
basically same process i guess
yes
but why would that matter here
are you suggesting for saddle point we go 1 derivation deeper?
yeah its just a random pic i found, i just need to know how to get the saddle point in general
the derivative does not cross the x-axis
because that would mean that the slope switches from positive to negative or vice-versa
@cobalt crystal Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
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.
@night rune Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
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.
I am so confused i dont even know where to start
I would assume this tends to 0 so 0<x[n]< smht i need to figure out that tends to 0
|sin| can be bounded by 1
and u can probably also simply write 3^i instead of (i+1) 3^i
Every single one of them can be bounded by 1, so it would be 1 + 2 + 2^2 + ... + 2^(n-1)
also, it's probably more appropriate to bound the absolute value of this expression (it could tend to sth negative)
i gues
there are tricks to find the sum of the denominator, the sum of n * 3^n and so on
but you don't even need to do that
oh right, this was mentioned before
u dont even need geometric probably
clearly the denominator sum is > 3^n and the numerator sum is < 2^n
and that means that its < (2/3)^n -> 0
andd how abt sum from 1 to n of cos k / n*n
$\frac{\sum_{k=1}^{n}\cos\left(k\right)}{n\cdot n}$
MathIsAlwaysRight
this?
ye
again, try bounding it
so this bounding thing can be used wiht cos aswell alright
Yeah, both sin and cos have values between -1 and 1
so in absolute value, <= 1
👍
@cold nebula Has your question been resolved?
Closed by @cold nebula
Use .reopen if this was a mistake.
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.
nothing here looks wrong so far 
just keep on simplifying 
using a ||logarithm|| might be a good idea c:
Idk what Tht is
ah 
okay so, nothing here is wrong, but this probably isn’t helpful if you can’t use logs 
my new suggestion is to rewrite 3^2/2^6 as 3^2/(2^3)^2 on the right hand side 


@potent compass Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
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.
Can anyone help regarding 8-13? I'm just not 100% sure about my answers
,help
A brief description and guide on how to use me was sent to your DMs!
Please use ,list to see a list of all my commands, and ,help cmd to get detailed help on a command!
,list
Use ,ls to obtain a briefer listing, and use ,help <cmd>to view detailed help for a particular command, or ,help to view general help.
If you still have questions, talk to our friendly support team here.
View or set meta-information about me.
ping: Check heartbeat and API latency.
help: Bot and command usage information.
list: Lists all my commands!
about: Shard status and bot statistics.
invite: Sends the bot's invite link
donate: Donate to help keep the bot running
prefix: View bot prefixes and set a personal prefix.
support: Sends the link to the bot guild
feedback: Send feedback to my creators
@astral marsh Has your question been resolved?
I think x should be 2, right?
Yes that is luka
Because i thought(im not sure) that 2^3x=2^6
3x=6
x=2
And 3^x=3^2
x=2
I don’t know any explanation but this seems logical to me
@astral marsh Has your question been resolved?
Closed by @astral marsh
Use .reopen if this was a mistake.
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.
Hii
You should split the 4x-10 more intelligently. Use (x^2+2x+2)' = 2x+2 so that 4x-10 = 2(2x-5)=2(2x+2-7)
Then you'll have -14/(x^2+2x+2) and use completing the square
Read the previous eqn
I give up
!done
If you are done with this channel, please mark your problem as solved by typing .close
Best help
Did you have a question
Didn't seem like it
.
I read it
-5 = 2-7
And how does that even help me
Keep reading
The beginning part
Then read this part
Closed by @meager delta
Use .reopen if this was a mistake.
Bruh
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.
!xy
Please show the original problem, exactly as it was stated to you, with the entire original context. A picture or screenshot is best. If the original problem is not in English, then post it anyway! The additional context might still be helpful. Do your best to provide a translation.

Will we get the original problem or no
@meager delta Has your question been resolved?
😭
is the question $\int x^2 \sqrt{a x^3 + x} dx$?
Pseudo (Cat theory #1 Fan)
yeah
I thought that was a 4
its a 4
...

so, $\int x^2 \sqrt{4x^3 + x} dx$?
Pseudo (Cat theory #1 Fan)
yes
$a \neq 4$, unless said $a = 4$
USS-Enterprise
what have you tried so far
i don't think this will work very well unfortunately

Ty
