#help-23
1 messages · Page 116 of 1
Using help-channels to help>>>> using help channels to get help
What a menace to society
.close
.close
Closed by @idle walrus
Use .reopen if this was a mistake.
let it sit for a few mins and itll release. theres enough channels for everybody.
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 verifying this trig identity
what is the relation between sec(x) and cos(x)?
sec = 1/cosx. ?
so what is sec(x)*cos(x)?
Just expand the LHS
Closed by @signal sonnet
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.
• 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 currently working on graphing trigonometric functions, and I'm a bit confused on how you actually get the y values since using a calculator gives me a completely wrong answer and I'm not seeing anything in the lecture on how to solve. Could someone explain to me the process of solving y=2sin(π/2) and why it = 2?
is your calculator set to degrees or radians
lemme backtrack, do yk what radians are?
yeah i do, and yeah it was set to degrees that was the issue. Was never taught that was even a thing lol thank you
poor calculator givin you 3.14.../2 as a graph lol
.close
Closed by @west notch
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.
• 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.
uh this isnt a question but does this look right to u
Yea
Yes, coz you did not wrap the sum with bracket.
$\sqrt {1^2} + 1^2$ is what u have
Stephen
was just wondering because i was looking at 45 45 90 triangle
because √1 + √1
anyways
.close
Closed by @signal sonnet
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.
• 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.
part b
@mortal thicket Has your question been resolved?
<@&286206848099549185>
@mortal thicket Has your question been resolved?
I'm not sure your proof for part (a) is adequate too
here's how you should go about this:
if $x^3+px+q=0$ has the roots $\alpha, \beta, \gamma$ then certainly $(x-\alpha)(x-\beta)(x-\gamma)=x^3+px+q$ , expand out the Lefthand side of this and then you'll get three equations, where all the sum of the coefficients $x^2$ terms on the left have to be equal to 0 because it isn't present on the right hand side, similar the sum of all the $x$ terms have to be equal to p because the right is just $px$ and then the sum of all the constant terms have to be equal to $q$ because it's just $q$ on the right hand side.
Blue Guilmon
part (b) once you've established part (a) and using the equations from part (a) is just using part (a) to do induction for $n>3, n \in \mathbb{Z}$
Blue Guilmon
did this help? @mortal thicket
what to do in part (b) will be more obvious once you have done part (a) correctly
if you need help with how to set up an induction proof let me know
sorry about the typos in my latex I wrote it very fast lol
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.
• 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.
Closed due to the original message being deleted
You deleted your original post. The channel will abruptly close and possibly lock. (This is irreversible). Please claim a new channel and do NOT delete the first message of any future channel you claim.
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.
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.
how so
Wdym
Oh nvm
4125+4409
8534
And the total is 15348
Righ
no, it says they're picking out of high school only and some college
and out of that how many people is 50 and above
@timid goblet 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.
• 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 have a doubt regarding the johansen cointegration test
There is a bit programming involved
I will attach the code below
import glob
import pandas as pd
import numpy as np
from statsmodels.tsa.vector_ar.vecm import coint_johansen
path = "BNKNIFTY/*.csv"
basket_results = []
for fname in glob.glob(path):
data = pd.read_csv(fname)
close_prices = data.iloc[:, 4:7]
close_prices = close_prices.apply(pd.to_numeric, errors='coerce')
close_prices.dropna(inplace=True)
johansen_result = coint_johansen(close_prices, det_order=0, k_ar_diff=1)
cointegrated = np.greater(johansen_result.lr1, johansen_result.cvt[:, 1]).any()
if cointegrated:
basket_results.append((fname, johansen_result.lr1))
sorted_baskets = sorted(basket_results, key=lambda x: np.max(x[1]), reverse=True)[:5]
for basket in sorted_baskets:
print(f"Basket: {basket[0]}, Trace Test Statistic: {basket[1]}")
This is what I am trying to do
here I am just comparing the magnitude of the trace statistics with critical value, is that the right approach?
@main lynx Has your question been resolved?
<@&286206848099549185>
@main lynx Has your question been resolved?
Closed by @main lynx
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.
• 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 anyone pls tell me how to solve these two equations
you have 4 unknowns and 2 equations so there is no single solution
where are these equations coming from?
@wintry sigil Has your question been resolved?
@wintry sigil Has your question been resolved?
Noone is coming to help
Is the answer 30
anyway i ll just help
correct me if i made some mistakes
thats complicated so i cant tell it by words
i just show you all the steps
tag me if you dont understand smth
@wintry sigil what is the problem?
well
what if I tell u you can never?
this is precisely the reason
Mr. Mocha already explained me the problem
Hmmm I understood
so which question do u want to solve now?
Just this
What does distinct real number mean
2
+3 and -3
Why did he reject -10 over here
is 3 a real no.?
Yes
so,
tho both are 3 in size,
- sign makes a huge difference
so they both are not the same
3 and -3 are distinct
OoooO
which means, the two solutions of
x^2=9 are real and distinct
but look at this,
x^2=0
there is only one solution
Yes
so "distinct" doesn't make any sense here
any other questions?
hm...
oh
oh
that seems quite simple
the question is just asking what are all the possible numbers a+b+c+d can have
hm...
hm...
i think things just went quite complicated here
so the reason -10 was rejected I guess,
is that a times c is 25
if a times c is 25, I don't think there are any real numbers a and c such that a + c give -10
but if it it is not necessary for a,b,c and d to be real, then -10 can also be considered
then another possible answer can be -20
but the question says distinct and real
@wintry sigil Has your question been resolved?
Closed by @wintry sigil
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.
• 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.
Two masses are moving on straight frictionless lines with a distance of "a" from each other. The lines are oriented along the x axis.
the masses are connected by a spring of constant k such that we get a potential energy:
U=0.5 k (r-l)^2
where r is the distance between the masses and l the rest length of the spring
We introduce center of mass and relative coordinates
i would use:
$q_1=x_2-x_1$ and $q_2=\frac{x_1m_1+x_2m_2}{2}$
~Martin
what i am stuck on is getting the kinetic energy T
@grizzled shoal Has your question been resolved?
@grizzled shoal Has your question been resolved?
@grizzled shoal Has your question been resolved?
@grizzled shoal Has your question been resolved?
@grizzled shoal Has your question been resolved?
@grizzled shoal Has your question been resolved?
.close
Closed by @grizzled shoal
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.
• 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.
Let $\Omega = {1, 2, 3, 4, 5, 6}$, then every of these families $F_1, F_2, F_3$ is a $\sigma$ - body of the subsets of $\Omega$ set:
- $F_1 = 2^{\Omega}$
- $F_2 = {\Omega, \emptyset}$
- $F_3 = {\Omega, \emptyset, {1}, {2, 3, 4, 5, 6}}$
Can you explain what $2^{\Omega}$ and other F's are?
Fegres
I am 13 and I suck at math please help me
2^Omega is the power set
and well the other Fs are given so I'm not sure what you want to hear?
they are sets whose elements are subsets of Omega
also presumably the word you are looking for is sigma-field or sigma-algebra
I don't get it
or event space, if that holds any meaning for you
the set of all subsets of Omega
Like in 3'rd example
Can Omega be in a subset of itself?
no
Why is it 2?
but it is a subset of itself
each element is either in a subset or not
that gives 2 options
which means that the powerset will have 2^|Omega| many elements
which you can see as the origin of that notation
or otherwise see it as the set of functions Omega->{0,1} where that second set is often just called 2 in set theory
That makes sense
in general the set of functions A->B is called B^A
Is sounds unintuitive
why
it fits perfectly the definition of subset
A is a subset of Omega if all elements in A are also in Omega
clearly A=Omega works
@slim nebula 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.
• 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 need help with part B of this question i don't know what to do with this integration
IBP
hello
hi
as this ln x is in all brackets squared we cant bring the 2 to the front right?
that's true, we can't
i tried doing integration by parts but i didnt understand how to do it
what are your u and v (or f and g)
u = (ln x)²
v = x
good
becuase v' is supposed to be 1 right??
i dont know what ibp means
i dont know how to differentiate (ln x)²
Are you familiar with chain rule?
you can, but it's not necessary (might help)
dy/dx = dy/du * du/dx?
ok i will try it
so it is 2 ln x
so does this make u' = 2 ln x
wait
u also need to multiply with the differential of u
so its 2/x lnx
yes
in other words
y = (ln(x))^2 = u^2
u = ln(x)
hence:
dy/du = 2u = 2ln(x)
du/dx = 1/x
dy/du * du/dx = 2ln(x) * 1/x = 2/x ln(x)
Idk if it makes sense?
yes it does
that's basically what chain rule says
so when i put it in by parts i get this
x(ln x)² - ∫ 2 lnx dx
sure
Closed by @lyric galleon
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.
• 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.
hey help in french please
que
vous pouvez simplement utiliser la traduction
?
alors parler anglais?
je ne parles pas anglais
Je pensais que tu avais dit que c'était plus facile en anglais pour toi ?
j'ai souvent des personnes qui m'aident en anglais donc j'espere tomber sur ces personnes, les personnes qui ne peuvent pas convenir a mes besoin en maths hors français je les invite a ne pas poluer mon salon merci.
Ah laisse tomber
Quelle est ta question?
en gros c'est sur les fonction composé et matrices jacobienne ça te dit qlq chose ?
nous travaillons mieux si vous pouvez nous poser une question plus concrète
j'ai une fonction f(x,y)=(x+4y^4, y-3x²,2x²-3y)
et une autre fonction g(x,y,z)= 2xy-3x-3z
et h= g °f = g [f]
attendez c'est plus simple comme ça
j'ai calculer la matrice jacobienne
qu'est-ce que vous obtenez
savez-vous ce qu'est une dérivée partielle
oui
ils ont fait $\nabla g = \langle \pdv{g}{x}, \pdv{g}{y}, \pdv{g}{z}\rangle$
maximo
pas de probleme
@red prism 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.
• 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 convert both of these formulas i just dont get it (if you could answer it in dutch it would be nice)
Another question how do i write the right-hand side as a fraction and convert it
Like what is 3+x
My brain is just dying atm
@lean otter Has your question been resolved?
wdym by convert ?
Isnt a -27a^3 - 2a^2
ye
I just dont know anything abt math i suck at it and i have a test tmrw
But i cant find the answers to these questions anywhere
Cuz like what is 3+x
If you dont even have the value of x how can u know
x is any value, its a variable
it can be -246 or 65 or 36/87
if the values are included in the domain obviously
But if they arent
then x cant be those values
I just do 18+x if i multiply the 6x3
for b ?
Yes
What
^
when u multiply 2 fractions, you have to separate the things with + and -
no, 18+6x
yes
you can also cross simplify the 6 in the numerator and the 12 in the denominator
Im just accepting the fact that im boutta fail that test tmrw
rip
yes
I hope so lmao
Cuz i would just end with 72x
well if it helps you to see it like this then yes
but u dont multiply top and bottom together
I see it like this
But we always have to multiply them
But if i just want the bottom
I can divide
Upper left and down right
no no
thats for addition in between
here you multiply
so you multiply the top with the top
and the bottom with the bottom
Mhm
if its + or - you cross
What
(6)/(x)
this is for when you are dividing
*(3+x)/(12)
Alr
O
$\frac{a}{b} : \frac{c}{d} = \frac{a}{b} \times \frac {d}{c} = \frac{ad}{bc}$
fedeCreeper
this is what you were getting confused with I believe
But
Arent you supposed
To multiply top x top and bottom x bottom
But what i dont understand is
How do i multiply the 6 with 3+x
And after
Simplify it
if its a multiplication in the middle of the fractions
could you translate the problem btw?
write the right-hand side as a fraction and simplify it
For this one i dont get question b and it says “simplify the following formulas”
Its 2 am for me rn and i gotta get up at 6:30 for school but i cant sleep cuz i just cant fix these math problems (there for a grade tmrw)
ok so for b, expand the (3a)^2 and (-3ab)^2
theres no -
no
Huh
not for the bottom
-3
np
How can u multiply b with 9
Do u just get
9b
-9a^2b^2
A^2b^2
dont forget the -
Huh
9 just says 9
But
Because it multiplied
With the minus b
u multiply it with -b^2
Yo
I didnt know u could just multiply em
I asked a diff question in a dutch server and that dude is a math genius
But he was so shit at explaining
I asked a question
He asked me
Do u know what u need to do
So i said obv no
Otherwise i wouldnt ask it
But ye
¯_(ツ)_/¯
explaining is hard
im also not the best but im trying to get better at it
You’re good at it what do u study
Na he was just too lazy to explain it to me cuz its easy as f for him
well im in college rn and im mostly interested in maths tbh
I just feel like this is way too easy if i look at other ppl there work
Cool
You trynna become a math teacher?
Oo that sucks
I mean if u really like math i would do it if i were you you can pass on your passion on other people and maybe let them know that math isnt as bad as everyone says
Js do whatever u like snd you’ll end up in the right place lmao
hopefully
Do you maybe have time for one last question if u dont its ok
sure
Its b: it says you can also wrote A in the form A=py+q ill let u know what that other dude said but i didnt understand his answer
x = 0,2y-2, A = 0,5y -14
what is p and q ?
s set the expressions equal to each other and solve for x and y @lean otter
What are the expressions for b
To solve the system of equations, we can substitute the value of x from Equation 1 into Equation 2
b^2 - 3b + 5
What is the value of x
I can tell you how, but you have to do it yourself, otherwise its cheating
hes right
substitute the value of x from Equation 1 into Equation 2
I spend the last 3 hours trying
i mean they sry
And my english is bad but ill try
!nosols
As a helper, please do not give out answers that could be copied as a homework solution. Have the student work through the problem themselves and guide them along the way.
it is what it is
simplify and solve for y
when you have the value of y, we can substitute it back into Equation 1 to find the value of x
The question says that you have to find the value of p and q
But i dont see p and q
Anywhere
In both of the formula’s
I just see a and y
p and q are any numbers
yes
A=p(5x+10) + q
Then divide
Right
P(x+2)+q
Wtf
No
This is wrong
Let me try again
ok
A=0,1y+2x-10
yes
then you want to get a form A=ay+b
a and b are any numbers, like p and q
rather, to not confuse u, u want A=py+q
and you have another equation u can use to get to this
ok
why ?
0,1 * 5 x is 0,02 x and 0,1 * 10 is 1
0,1*5 is 0,5
and you are in terms of x right now
the question wants in terms of y
A=py+q
you had the right idea
but the variable change was wrong
Cuz its gonna remove the y
How do i find out what x is
Wdym
for me its easier because its more methodic
but if u can divide first
then do -2
its fine
How
(0,2y +2 -5)
O
but applying the *2 is still good
Alr
youre almost done
0,1y+0,4y+4-5
wait wait
so this is (0,2y -2 -5)
How is it minus if you divide it it comes out plus
yes but you want in terms of x
so this y=5x+10
you can do -10 on the left and on the right
to get y-10=5x
right ?
Oo
Ik
Cuz if a number jumps to the other side it becomes the opposite of what it was on the old side
So plus becomes negative
yes
Negative plus
yes yes
yes
A=0,5y+14
+14 ?
good job
glad i could help
For my text tmrw
Whats methodic
^ basically
relook ur work and avoid making small mistakes
like forgetting a -
or sum annoying like that
@lean otter 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.
• 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.
If (x+h)^2=x^2+88x+y^2, then what does k=
Y=h?
insufficient info
there's no k in the original expression?
looks like it lmao
If (x+h)^2=x^2+88x+h^2, then what does h=
first try expanding (x+h)^2
see if anything cancels nicely :))
then Bob's your Uncle!
The x^2
but something else does
H^2
yes but expand (x+h)^2
X^2+xh+xh+h^2
Keep messing up the variables
ok now we set that equal to our other guy and we get x^2+2xh+h^2=x^2+88x+h^2
what do you notice cancelling out?
X^2 and h^2
2xh=88x
now Bob's your Uncle! 
Ohhh. I see it. K =44. I couldn’t see the x canceling out. Thank you!
well…
I’d argue that we still have insufficient information
because if x is 0, h can be anything
but x is a variable it can be anything
all the x's cancal out when your solving for h
of course, but we can’t divide by x unless we know x is not 0
otherwise we’re losing solutions
so what we could do is provide an answer for x different to 0 and x equal to 0
for x different to 0, h=44
otherwise, h can be anything
Bro is doing Alg I 💀🙏 it's not that deep but yes I agree in normal circumstances but get the basics down before considering the other cases
so I agree but i don't my mans St3phen needs to worry abt that rn
emphasis on the "rn"
no, of course not, but it’s not a good habit to divide by variables unless you know what you’re doing
ofc but that practice comes when Fundamental Theorem of Algebra comes in and students learn abt that stuff
it’s just a very specific case though, if we just assume it’s not 0 like you said, you’re right
I’ve got a few more questions if anyone cares to hello further
sure :))
yea I think they'll prob have the instructions x!=0 or smthn of similar nature
but good point nonetheless!
Thx. On a typical day at limestone college, 3/5 of all students ride a bicycle to class. Among the rest of the students,1/3 ride the bus and 1/6 walk. On a typical day, what fraction of the students ride the bus to class?
so do you agree that 100% of the students exist?
Yes
ok so that is 5/5
suddenly philosophical
if 3/5 of them bike then how many do not bike?
2/5
fr ‼️😩
now those are the remaining students now how many of those students ride the bus in the instructions?
1/3. So multiplication?
yep :))
yw! 
Last question: At 12 midnight the center of a hurricane is 360 miles from the coast of Miami, as shown in the figure below. The hurricane has an approximate radius of 120 miles and is currently approaching the Miami area at 30 miles per hour. If the hurricane keeps its current conditions what time, will the the leading edge of the hurricane first reach Miami
can you show the figure?
think about how many 30 miles chunks are in between the coast and the edge of the hurricane
12?
that’s actually not right
since it’s the centre of the hurricane that’s 12 chunks apart
not the edge
first we need to find how far away the edge is
Yep
distance from center of coast is 360mi right?
Yeah
so what is the distance from the edge of the hurricane to the coast?
120?
radius is 120, diameter is 240
Ahh I see it now
back to basics huh I need to read directions better and you need arithmetic help 😂
so 240
yeah I check additions on my calculator even if I’m completely sure they’re right 😭
now how many 30mile chunks are there?
8
dude on my BC calc test I had to make sure I was doing my simplifying right for the definite integrals 💀
just had to make sure 5-3 is still 2
IKR maybe the universe changed while I wasn’t looking
yes! :)) so how many hours if there are 30 miles chunks
that what I'm saying bruh
just had to make sure Euler didn't come back from the dead and prove 2+2=5 the day before my test smh
8 hours
🎉
so at what time will the hurricane get to miami?
So then 8am. Got it. I see the Simplification now. Thank you both so much!
yw! Hope you have a good day :))
now I gotta go to bed myself
gn!
.close
Closed by @hazy crest
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.
• 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 explain how to do this? i dont understand why the answer is 1? can someone explain the process into explaining something in terms of months when the original is in years?
Two interest rates are equivalent if they earn the same amount of interest over the same amount of time
So if the annual interest rate is 3% (hence the 1.03), what amount compounded monthly also earns 3% after 1 year?
1 uses the monthly interest rate, 2 uses the annual
After 1 year, 1 would have earned 3% interest whereas 2 would've earned
,calc 1.03^12 - 1
Result:
0.42576088684618
42.5% interest
Closed by @fallen hound
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.
• 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.
Woops

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 check my work here?
I'm pretty confident that I set up everything correctly
@mint veldt Has your question been resolved?
.close
Closed by @mint veldt
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.
• 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.
hm so according to this the third step, while solving a quad. equation we add the square of half of the x coeff on both sides and
Closed by @mint quarry
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.
• 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 you find the equation for this graph??
since it's quadratic we can let y = ax^2 + bx + c
since, at y-axis, x = 0, 3 = c
now we have y = ax^2 + bx + 3
ok
and we can use other information given to find a two equations
and find the values of a and b
we have (90,y) and (120,27)
yea, try plugging in those values
try with the one where u know both x and y first
a = 1/150
b = -3/5
c = 3
damn
that was so easy
thank you
i have another question
i used the quotient rule
and im up to the point where i got ( 4√x + 2x )/ ( 2√x )
i dont know what to do after this
i dont even know if this is right
can u show ur working
i think ive made a mistake somehwere
mine's worse dw
I HAVE A MATHS EXAM TOMORROW AND IM FAILING WTF
,w derivate (x-4)/(2+x^0.5)
*cries*
the ( x - 4 ) is the dfference of two squares 💀
and 2 + √x cancelled out with 2 + √x 💀
leaving you with √x - 2 💀
that differentiates to 1/2√x 💀
are you by chance answering igcse
this is A-Level Maths
i see
nah o level
yea u too
Closed by @lyric galleon
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.
• 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 do this?
3rd law
yes but i dont get how it relates
do u know the 3rd law?
how does the equal and opposite reaction make it so that the force is equal?
I thought it was 2nd law with f = ma
and that the force would be double
I squared is -1, I cubed is negative i and I to the fourth power is 1
Then they repeat so I to the fifth is equal to I
huh?
but if the 10kg objects pushed the 5kg object wouldnt the 5kg object just be pushed back
All action reaction forces are equal
yes
and the 10kg would move forward
The movement is ineqial due to the different masses
wouldnt that mean the net force would be forward
and therefore theres a difference in forces
and its not equal
no
No all pairs of forces are equal
you are thinking of acceleration, which is not exactly the same
But because of Newton’s second law where acceleration depends on mass the movement of objects is not equal
so the magnitude of forces is the same but the reason that the 5kg object moves backwards is beacuse of the varying masses and acceleration?
alos moving in one direction doesnt mean that the force point in the same direction
Yes
Also momentum plays a role but idk if u have learned that yet
Whats that
Yeah basically momentum is equal to mass times velocity and it is always conserved in a collision
If ur taking a physics course you will learn about that later so I wouldn’t worry
About the concept now
But it’s the law that dictates how objects move after collisions
oh
Also for this question are the multiple choice answers not displaying the correct answer
imagine u throw a ball in the air, the momentum/velocity is pointed up, but the force(gravity) is pointed down, so direction of movement doesnt indicate force
does the upward force of the ball remain the same even though its falling down
isnt there like wind resistance or somethin
Yes
U don’t learn that until later physics classes cause it involves calc
For now assume no resistance
if u consider drag its up but anyways
how abt this
This is why objects fall down
so does gravity kill the upward force of a ball thats thrown in the air
what did u get?
33
how did u get it
That’s the thing
using the suvat
oh 💀
and its on a constant deceleartaion?
Yes
so in the force diagrams there would be no upward force shown in the net force of the ball?
and then the gravity gets balanced out by an equal force madeby the ground?
?
the gravity pulling on the ball
is it balanced out when the ball hits the ground
the equal opposite forcE?
same got 33
w
so sometimes when a ball sinks into the ground why is that
hello
or like how an indent can be made in the ground if something is heavy enough
was dat
bruh
Those are due to other forces that are outside the scope of the physics u are doing right now
They depend on the material of the floor amongst other things
In ur class those forces will be equal
i think u open a help ticket idk
wait whered u get the book
me and eugeen are peers and are ahving trouble with this
the train motion is going left but with the ball, is it swaying right as it resists the change in motion?
so it is in a constant state of inertia?
wait i think i got this
ok so
its clearly
inertia right
so the train must have stopped
as in like
it hasnt
it didnt stop
so the thimngy moves
its in a constant motion
how do u know
its asking what constant motion its moving
"describe the train movement that leads to the observation above"
then its on an angle or smth
My apologies, but I was hoping someone else other than you may answer this question
coz that owuld only happen with wind resistance
i dont think it would be a sudden stop
it says its going on a horizontal flat line
coz no wind res inside a carriage no?
can you please shut your mouth
Closed by @cold steppe
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.
• 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-



