#help-49
1 messages · Page 160 of 1
this one looks like it actually makes sense
If it helps, this is for a discrete simulation model
Trying to simulate revenue for different types of pax at an airport
And theres F&B visit probabalities
For pax_regions, pax_flight_type, and pax_travel reasons
Yes I do, Asians are at 17%
People in business is 8%
okay, this could be useful
is the percentage of asian in bussines the same as the percentage of non-asians in bussines?
Yes you can assume that
and do we know what percentage visits F&B
5% of business travelers
And 60% of asians
Okay, so to sum up, we have:
P(A) = 17%
P(B) = 8%
P(C | A) = 60%
P(C | B) = 5%
A and B are independent
We need P(C | A & B)
If anyone competent in probability can solve it with this, then go ahead
i will try to solve it, but im not very good at this so idk if i can do it
it might still be unsolvable
Ahh okay, thanks for trying
Looks I'll have to survey each type of passenger as well 
.close
Closed by @sinful condor
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.
am i on the right track?
i kind of forgot how to solve equations with 5 variables too
and with powers like these
@lost sphinx Has your question been resolved?
<@&286206848099549185>
i would use a different method, but i guess this should work
first i would note down x^2 <= 5
then id subsitute y^2 = 5 - x^2/2 in the second equation to get
x^2 + 8z^2 = 6
then id do
xdx + 8zdz = 0
and
dx+2dz = 0
from here
x = 4z
so from here it is pretty easy
from 1st condition substitue y^2
put it in 2nd condition
get z in x
so u got a function in x
use derivate for maxima minima
does this mean “substitute y^2 into condition 1”?
ye, sorry
get y^2 in terms of x
then z in terms of x
then f(x), so f'(x)=0
i might be blind but how does y^2 = 1/(2a+b)^2 fit into x = 1/(2a+2b) ?
wait my 3rd equation should be 0 = 0a + 8bz
but so ur saying i dont need the first 3 equations?
just the 4th and 5th?
put it here
get z^2
now get z = in terms of x
@lost sphinx Has your question been resolved?
Closed by @lost sphinx
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.
What a wonderful world !
yes
What a wonderful world !
We then have v ranging from 4 to 7 and u ranging from -2 to 1
Now to find the Jacobean of this transformation , $\det{ 1& 2 \ 1& -1}$
What a wonderful world !
Compile Error! Click the
reaction for more information.
(You may edit your message to recompile.)
The determinant of $\begin{bmatrix} 1 & 2 \ 1& -1 \end{bmatrix}$
What a wonderful world !
What a wonderful world !
the jacobian is positive
so I solve for x and y and then differentiate 'em
right
,w solve y+2x=v;y-x =u for x and y
so I have 1/3,-1/3, 2/3, 1/3 as the entries of the det in that order
right
so 1/3
so the integral is $\int_{4}^{7} \int_{-2}^{1} \frac{vu}{3} dv du$
What a wonderful world !
,calc 33/4
Result:
8.25
ok but it's not supposed to be negative
there is a minus missing, not from the jacobian but from your integrand
(2x+y)(x-y) = -uv
@twilit field 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.
quikquestion
why sen^2(x)=0 is the same as sen(x)=0
Because when you take th esquare root of both sides of the first equation, it turns into th esecond equation
x^2 = 0 is the same as x = 0, same logic applies
And you dont have to worry about + because __+__0 = 0
$\pm 0=0$
;(
try to prove it
-0 = 0
+0 = 0
???
if you have 5 apples and they took zero apples they took 0 apples
Yes
if you have 5 and they gave you 0 they gave you 0
Ggez
Closed by @sacred gate
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 problem with this code in R
you can see by how its ploted, where the mean is about at the 20 x axis
but its wrong because i see this in the answer sheet
can you show the directions
An explanation of how to do it
oh sounds like theirs is just shifted 20 to the right from yours then lol
try entering the full command? like maybe the arguments size and prob are not really in that order
i know full command will work
then it must be that the function args are not ordered that way
let me see the docs online
like the answer sheet that im using?
there are several tutorials, documentations for programming languages online
the order of arguments seem right, plot function seems the culprit here
yh thats what i thought
but maybe its because its a negative binomial distribution and the question is asking like this
range
of 20 to 60 even though i use 0 to 40
got it, plot function uses the following syntax:
plot(x1:xn, y1:yn)
if only plot(x1:xn) is passed, it will plot this:
plot(x1:xn, x1:xn)
so i just gotta make sure i add the x axis values as well
so, in the plot shown in the answer sheet, x values are from 20-60 and y values are from dbinom function
in the one u used, the x values and y values are same, that's why they appeared shifted
Closed by @glossy pagoda
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, how do you do part a?
integrate 1/t from 1 to x^{alpha/2}
and bound it below by the rectangle formed by [1, x^{alpha/2}] and the minimum of the function on that interval
Wait I don't get the second part. Wouldn't it be this and not 0?
i don't know what you're referring 0 as
Because in the question it says show that the function is > 0
that still doesn't answer my question
Wait I don't get what you mean by the 'minimum of the function'
so it is the blue dot?
the integrand 1/t
show your work
Okay
and be more clear and precise what you're asking
Okay sorry it's because I did try it and didn't get the terms they wanted
yea i can't tell what you're doing
Yeah idk what im doing either
you should start with the integral then derive the inequality bounds, not the other way around
what is the result of the integration?
Well, I got alpha/2 logx
and if x > 1 and alpha > 0, what's the sign of (alpha / 2) * log(x)?
Positive
Is that what you mean by sign-
Okay yep
if something is positive is it > 0 or < 0 ?
0
so you've proven this inequality so far
this will give you the other inequality
Closed by @empty ivy
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, basically I need to give examples of two functions (f and g) to satisfy these conditions:
Can someone help me?
(e stands for and btw)
Ok, imma try it rn
There’s a classic example even
@frail bloom Has your question been resolved?
Closed by @frail bloom
Use .reopen if this was a mistake.
Ty guys, Idk how but I solved it, lol
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.
You didnt use the domain correctly for 0, t <= 2
how should i have done it?
Why does y=0 have a slope?
Also why didnt you graph between 10 < t < 11
Straight line from -infinity to x=2
oh ok
i thought i did it the right way
assuming t represents time, 0 to 2, not -inf
t > 10 doesnt mean you jump from 10 to 11
so from 0 to 2 it should be aline straight up?
no
Straight line from t=0 to t=2 (really the x-axis)
not up
then what is the proper way to graph that
You graph from t=10 onwards?
Have you used open holes/closed dots?
There is not much to it
Result:
3.4
Yeah it isn't
so when i made the rest of the points
i just subbed in the number
but for above 10
what number would i sub in?
t=10?
you have to put 10 but you exclude the point 10 because it isn't included
You find 0.3(t-10)+2.4 at t=10 then graph it from there
As an endpoint
I'm not necessarily saying it is included
Ok
tell me if i do it right
continuing from 10 onward
i realise now that the green dot should have been open not closed
but besides that is it correct?
👍
Closed by @tribal wharf
Use .reopen if this was a mistake.
(2,0) should be closed since it's in the first thing (0 t≤2)
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.
So I have a few problems here that I thought I understood pretty well but none of what I input would work
Idk if this is like a website issue or if I’m so lost that I can’t even see how I’m wrong but either I’m confused
Nope
Your first answer is incorrect
Ok how would I do it then cause what I did was just invert the graph, then find the x values on that inverted graph
You can just find the y-values that correspond
$x=f^{-1}(-4)\implies f(x)=-4$
mathisfun
On the graph that’s there or on the inverted graph
On the graph.
So I find y=-4, and then the corresponding x value is the answer?
Cause I swear I tried that too and it said it was wrong
So then for the first one it would be 3.5 right? But when I put that in it says it’s incorrect
It's 3
Read it again
Would it not be this?
Are we looking at the same thing
I think so?
It should be 3.5 then
Ok maybe I have to put them all in to tell me if it’s right or not let me try that
This website sucks like that
Probably
The last one
HOLY THANK YOU SO MUCH 😭😭😭😭😭😭
Ok now this one
I just straight up don’t understand what that error means
Both parts are wrong
The vertex of f(x) is at x=-4
The inverse should satisfy the relation $x=(y+4)^2$
mathisfun
Ohhh yeah cause it’s inside the parentheses right
So than how would I do the “containing 100” bit
Would that not just be positive infinity?
Yes
Try this first to at least get credit
Didn’t work either
$y+4=\sqrt{x}$
mathisfun
I got rid of that error by putting parentheses around the x+4 but something else is still wrong
Ok actually I’m gonna ask my teacher about it tomorrow and hope that she knows how this stupid website works
Thank you tho you did help a lot
.close
Closed by @unique cliff
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 was thinking that this would require me to set up an ODE
DE is so painful 😭
trying to figure out the ODE at this point tbh
Because the ODE is $\frac{dy}{dx} =\frac{-y}{x} =t$
@brisk widget hi Vipey wipey

What a wonderful world !
Viper could probably help you with this one
which gives me $y = -tx+C$
What a wonderful world !
wouldn't it be -x/y?
butuh
but I'm not using that here, so it doesn't really change much
it doesn't seem like you can express x or y as functions of just t, i'm not seein how this parameterization works 💀
so solving for the curve passing via (0,a) and t=0, we find C=a
so $y=-tx+a$ is the parametrixation
What a wonderful world !
oh
Does that work?

I was half way there
I have to solve $x^2+(-tx+a)^2=a^2$ for x and then y
What a wonderful world !
this aint uh
correct
cuz its dy/dx = -x/y = t
oh wait nvm im trippin
but no yea uhh
hmm?
how did you get y=-tx + a?
The differential equation makes sense, right
y'= -x/y makes sense
y'=t makes sense too
yes
and I know that the curve passes via (0,a)
yes
so that gives y =tx+a
$\frac{dy}{dx} =t$
What a wonderful world !
oh
so y=tx+C
LOL alr yea i see now
Closed by @twilit field
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.
for (a) I was thinking $f(t)= (0,t), f:[a,b] \to R^2$
What a wonderful world !
for (b) the same parametrization , but from [-1,2] \to R^2
Well in the first case your domain interval is really R, but yeah for b it’s from -1 to 2
Yeah, but the issue is by book defines a curve as follow
Usually it’s assumed that R is an interval
yeah, I know
Ah
okay
That doesn't make much sense though
I mean R has all the same properties that proper intervals have
Usually the defining property is that for any two points in the interval, every point in between is in the interval
In other words intervals are connected subsets of R
Now for $(c)f(t)=(t^2,t^2-1)$
What a wonderful world !
I was thinking x-2=t
oops
yeah, that's a big oopse
x-2=t \implies x=t+2; y= t^2-1
$(t+2,t^2-1)$
What a wonderful world !
What a wonderful world !
Compile Error! Click the
reaction for more information.
(You may edit your message to recompile.)
$f(t)=(t+1,\sqrt{4-t^2}+2)$
What a wonderful world !
This only plots the top half of the circle, which is a probelm
I suppose a trignometric sub would be better here
$x=2sin(t)+1;y=2\cos(t)+2$
What a wonderful world !
Closed by @twilit field
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.
Hello can anyone help me with the definition of interior of q is empty
@molten bay topology?
If so it means, roughly and intuitively, that the set is "all boundary."
Real numbers
Boundary i see
So (0,1) is interior of (0,1) am I right?
yes
Closed by @molten bay
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.
does anyone know how to solve this or have an example
you can set up a triangle and use law of sines or similar to find the angle
Can I interrupt for a second?
might be an easier way but idk lol
Above question
1 radius = 3 units
-1/3 radius = -1 unit
..... radiuses = -1.33 units
well make your own channel
Someone else is already using this help channel. If you need help with a question, please open your own help channel/thread (see #❓how-to-get-help for instructions).
i might b a lil slow but idk what to do w this
😭
that's how to do part a
called the unitary method
im slow
This video shows how to solve problems using the Unitary Method.
Textbook Exercises: https://corbettmaths.com/2019/10/04/unitary-method-textbook-exercise/
@grizzled glade Has your question been resolved?
@grizzled glade Has your question been resolved?
Closed by @grizzled glade
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.
(a) = $\int_{a}^{b} \sqrt{2}dt$?
What a wonderful world !
so $\sqrt{2} ( b-a)$
What a wonderful world !
@twilit field Has your question been resolved?
The second one would be $\int_{0}^{k} \sqrt{ 2e^{2t}} dt$
What a wonderful world !
so $\int_{0}^{k} \sqrt{2} e^t dt = \sqrt{2} ( e^{k}-1)$
What a wonderful world !
.close
Closed by @twilit field
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.. I'm struggling with this one integral question..
,rccw
dont cancel and take root(x) = t
u get 1/(2root(x)) dx = dt
integral t^2/(1+t^2) dt
yup
How do I continue-
write num as t^2 + 1 - 1 and split into 2 terms
Yess I'm getting tysm!!!!

.close
Closed by @dry zodiac
Use .reopen if this was a mistake.
.reopen
✅
,rccw
Tyyy
The ninth one.. I thought of getting it in the format of e^x(f(x) + f'(x)) so that's it's integral would be e^x(f(x)) but how would you do that
with the square
just distribute the square across the fraction, and only concern yourself with the numerator
can you show your work so far
Did what you said.. now what do I do?
if you look carefully it is in the form you wanted
the options are a big hint
nuh (4x^2 + 1) to something like (4+1/x^2) how do you do that
Take x^2 common, bring it out of the brackett as x^12
yup
Ok.. what do i now
think of some substitution that could work
||again options are a big hint||
1/x^2 = t
yeah that works too but t = 4+1/x^2 makes it easier
Closed by @dry zodiac
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 some help getting comfortable with changing the order of integration for triple integrals.
If we have a solid described by: $0 \le x \le 2, 0 \le y \le 2-x, 0 \le z \le x + y$
johnseymour20
How do we go about changing the order to x -> z -> y?
The x limits should be in terms of y,z. The y limits in terms of z, and the z limits should be constants.
@clever karma Has your question been resolved?
.close
Closed by @clever karma
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.
$(gard f)(x,y) = (\frac{x}{\sqrt{x^2+y^2}}, \frac{y}{\sqrt{x^2+y^2}})$
What a wonderful world !
as for the second function
uh
$(\frac{ 2x}{(x+y)^2}, \frac{-2y}{(x+y)^2})$
Is this fine
What a wonderful world !
gard
Closed by @twilit field
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.
yes so this field is … ?
irrotational
yes 👍
The third one doesn't look pleasent to compute
Lem'me think if there's a trick to it
yeah lol i didn’t try
it’s not that hard, after the calculation the components cancel each other out
yes it is
the next one is (0,0,2x) and is thus not irrotational
for d)?
ye
There is one more factor, what’s the result of $\frac{\partial}{\partial x} \frac{x^2}{2}$ ?
tm
x
x
yes !
Thanks!
i’ll let you try for e)
I suspect (e) is irrotational
don’t run away like that, did you calculate the curl for the c)?😂
I think they take the Euclidean norm?
yes, what’s the result of $\frac{\partial}{\partial y} \frac{z}{\sqrt{x^2+y^2+z^2}}$ ?
tm
or $z \frac{\partial}{\partial y} \frac{1}{\sqrt{x^2+y^2+z^2}}$ if you prefer
tm
$\frac{-yz}{ 2\sqrt{x^2+y^2+z^2}}$
you forgot a } at the end
What a wonderful world !
i have $\frac{-zy}{r^3}$
tm
hmm
$\frac{\partial}{\partial y} \frac{1}{r}= \frac{\partial}{\partial y} (x^2+y^2+z^2)^{-1/2})=…$?
tm
apply the derivation rules for $x^n$
tm
What a wonderful world !
yess so $\frac{\partial}{\partial y} \frac{z}{\sqrt{x^2+y^2+z^2}}=-\frac{zy}{r^3}$
tm
then, what’s the result of $\frac{\partial}{\partial z } \frac{y}{\sqrt{x^2+y^2+z^2}}$
tm
-zy/r^3
yes, so the first component of the curl is $-\frac{zy}{r^3} - (- \frac{zy}{r^3})=0$
got it
tm
similarly for all other components
yeah it’s practically the same method, a little boring to do😂
np you welcome !
.close
Closed by @twilit field
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.
Wtf does this mean
The awnser says 89
the minimum y you can get by plugging in some value of x
so basically yeah differentiate
Huh but then how do you even solve it
Anwser literally says 89
Like huh
<@&286206848099549185>
change it into a A^2 + B^2 + C^2 + ... form
ye was thinking about that too
Wdym
I'm js curious on how 89 is the anwser
you can take the partial derivative of both and then solve the system of equations
💀 wut
@cinder rain Conic section
?
@cinder rain Has your question been resolved?
I'm rn using chatgpt and I'm getting confused
?
Nvm
@cinder rain have you solved it yet?
Do you prefer English or 中文?
alr, have you understood the logic behind this
(2x + 6y)²
- 164x + 492 y + 1770
Idk how to square this part
My first idea was like
164 (x + 3y)
- 1770
But then idk
You can also simplify 164x + 492 y
I don’t think that’s a correct simplification to 164x + 492y
😭
Try again
Uh 2(82x + 246y)
More, it’s not fully simplified yet
Can't it be js 164 ( x + 3y)
Sure, but it doesn’t match with this one
You should take back a 2 back into the parentheses
try swaping 82 and 2
Yes, that’s all you need
yea i can feel smth coming up
no
TvT
ax^2 + bx + c = 0
Oh so we js make 2x+6y into x
Do you know the standard form of a quadratic function?
Wdym? The x = -b +- square root 4 ac /2a?
Set 2x+6y as t, so as not to mess up
No, I mean how do you find the minimum or the maximum of the function
-b / 2a ?
me personally i suggest u to try with this
But then I get 2 x square root of 89 i
Cus it becomes 6724 - 7080
Making x = square root of 89 x i
this formula is little off tho
( -b + or - square root of b² - 4ac ) / 2a
yeah i got (i ) as well...so i think this is the long way ..maybe the other guy knows the short answer
Yea so unless I'm able to uh make it so x is able to be times by 89 and divided by i
Xd
yeah we got whole another page of math if u do that
Xd I think I maybe can get the awnser using chatgpt
yeah do it and send me the answer as well
Basically make the 2x+6y as z
So it's z² + 82z + 1770
And then this can become
82 / 2 = 41
So
(Z + 41)² - 41² + 1770
So it's 1681
So -1681 + 1770 = 89
So it's (Z+41)² + 89
So 89 the anwser
Somehow
💀 I thought this was unsolvable 1 hr ago
ohhh it did that
Closed by @cinder rain
Use .reopen if this was a mistake.
dang bro aight gn
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.
$\int^{1/2}_{-1} \frac{e^x(2-x^2)}{(1-x)(\sqrt{1-x^2})}$
Vansh
well I didn't do anythig much, tried what I can do
but looked dead end everywhere
, rotate
what I thought:
tried to see if it was e^x(f(x) + f'(x)) form (it wasnt)
then
i tried to use property to see if e^x by chance get eliminated but nope
if anyone thinks of any idea, please lmk by pinging me
I will try that!
||PS: it would hurt me if anyone sees internet for direct solution, please try yourself||
<@&286206848099549185>
does not matter
the bounds are not symmetric
the first approach looks promising
I just solved it
break it down
2-x² as 1+1-x²
and it will be converted to e^x(f(x) + f'(x))
thanks for your time tho, i appreciate both of you :))
.close
Closed by @modern shard
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.
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.
• 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 explain why 6mm^2 is 6m x 10^-6 m and not 10^-3 m ?
bro 💀
seems too difficult
1mm=$10^{-3}m$
therealtdp
just squaring both sides,
i still haven't get the answer
1mm$^2=10^{-6}m$
therealtdp
Closed by @main glade
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.
the solution says the singularities "cancel" but what does that mean?
because $\mathcal{F} g(0) = \int_{-\infty}^\infty g(t),dt = \frac{1}{2}$
carburetor
but then if the imaginary part is $(\sin(2\pi s) - 2\pi s) / (4\pi^2s^2)$, clearly the F.T. evaluated at 0 isn't equal to $1 / 2$
carburetor
<@&286206848099549185>
@lunar pivot Has your question been resolved?
@lunar pivot Has your question been resolved?
@lunar pivot Has your question been resolved?
@lunar pivot 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.
dont understand where im going wrong
in the solution theyve given the reciprocal of the set of equations im using, but idt thatll play any role with that and also the notation is opposite
like theyve used lambda for M and mu for N
but other than that cant figure out where im going wrong cuz theyre getting
2 and 4 as answer while in mine i have a 1/3 factor
the relation of
u = 2L
is also fine
theyve got 2u = L
theres something wrong with the last part i suppose?
Could you post the original problem?
its on the paper
on top
thats the given info
a line passes through (-1,2,3) and intersects 2 lines
L1: (x-1)/3 = (y-2)/2 = (z+1)/2 at M (alpha, beta, gamma) and
L2: (x+2)/(-3) = (y-2)/(-2) = (z-1)/4 at N (a, b, c)
Find ((alpha + beta + gamma)²)/((a + b + c)²)
Well, that's quite the strange problem, they usually would want you to find the line or find a plane/another line satisfying some conditions, for which I'd try to form the direction vector and define the line through a point
But in this case that clearly won't work since your intersections are parametrized
yeah i mean thats me doing that
assuming a general point on the lines
and then applying the given condition
which then gives me two equations to solve for them but im going wrong in the solving part i suppose
What are you doing here though? Mostly confused with the notation at first
well i "found" A and N and M
and then i find AN and AM
like the vectors
the vectors are parallel cuz the lie in the same line
and hence they should be proportionate
so which is why ive divided them
took the ratios
How do you define parallelism between vectors?
Isn't that linear dependence?
And also, dividing vectors?
dividing the coefficients i mean, sorry
kinda?
but im not using 2 vectors to write a 3rd one
its more like
if i have a vector
3i + 2j
then
6i + 4j is also parallel to it right
If two vectors lie in the same line, there'll exist such a constant k, yeah
But a priori, you don't know which scalar it is, how did you find such coefficients to divide them?
well if a = kb
a/b = k
all of the coefficients' ratios will be equal to k and so i equate all the coeffs
It's more a thing of me never hearing of anyone define parallel vectors but well, guess we'll go with that
i mean, lets just go with that they lie in the same line for now
and hence im establishing that
Didn't you say a and b are vectors? They're each linearly dependent to a third one by a unique coefficient
Well, lemme check this out rq
i mean yeah but does that matter?
Yeah, don't worry about that, I think I got you wrong, I think I now get what you're doing
cuz like if i define a as ai + bj + ck and b as xi + yj + zk
and theyre parallel(lying in the same line)
so its just
ai + bj + ck = K(xi + yj + zk)
now if i take ratios of the coeffs or i and j and k
theyre equatl to K
a/x = b/y = c/z = K
thats what im doing for this
except ive just assumed a general point in a weird way and finding the vectors for them and then ratio-ing
Alright, so you've assumed the line where the intersections lie of the form (-1,2,3)+λ(a,b,c), where (a,b,c) is the direction vector, written the intersections in the form N=P+uv and M=P+zv
Am I right?
well yes, youre right but ive not found them this way though
ive found the general points from the given lines itself, not using the point given
Oh, alright, so you've written them in terms of the general point of the line they lie on
Then taken the vectors PN and PM and equated their coordinates?
not equated
proportionated, idk
but yeah
and then from then i solve the parametrics
Well, equated the coordinates of each one to a scalar k times the other
but im getting a 1/3 factor
yes
Alright, I've finally figured out what you've done, ok, the idea seems correct
When it comes to that the mistake is almost always just doing a sum wrong or unintentionally swapping a sign
I'd check the calculations first, then, if they're all right, I'd check how the solution went about the problem, and if their solution makes sense
they got this(notations a bit different)
well i did check the calculations
and i couldnt figure out what else to check, so i asked
lemme check again
Check the last factor, the -2+4λ
You've taken the vectors in the opposite direction the solution chose, so you should be getting exactly what they're getting multiplied by -1 in the system
That -2+4λ is the only thing you calculated that doesn't match what the solution got multiplied by -1
Well, I'm fairly sure the mistake is there
Now, why you've gotten something totally different, I don't really know since I'm not sure which choice of direction you've taken
Or whether you've confused the direction vectors just for that one specific factor
wait i believe the solution is wrong
Well, that may be possible too
Is this the whole solution?
look at M
the last point is -2λ - 1
but if we take the general point
the last point is -1 + 2λ
its that or i copied the question wrong
yeah i mean you just need λ and u
after that its just adding and subtracting and squaring
Well, guess you can't check whether the solution makes or doesn't make sense then
And yeah, if the question is as you've copied it
yep
i copied the question wrong🤡
in L1
its (z+1)/-2
not (z+1)/2
😭
sorry to bother you sm😭
Welp, it's always stuff like this, don't worry about it
thank you so much though
Don't mention it, hope I could help you
Closed by @grave 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.
• 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.
$\int_0^{2\pi}\sqrt{1+\sin(x)}dx$
mathisfun
mathisfun
$\int_{-\frac{\pi}{2}}^{\frac{3\pi}{2}}\sqrt{1+\cos(u)}du$
mathisfun
$\sqrt{2}\int_{-\frac{\pi}{2}}^{\frac{3\pi}{2}}\cos(\frac{u}{2})du$
mathisfun
$2\sqrt{2}\sin(\frac{u}{2})\bigg\vert_{-\frac{\pi}{2}}^{\frac{3\pi}{2}}$
mathisfun
So just $2\sqrt{2}\qty(\frac{1}{\sqrt{2}}-(-\frac{1}{\sqrt{2}}))$
mathisfun
Which is $2(1+1)=2(2)=4$
mathisfun
Remember sqrt{y^2} is |y|, not just y
,w fnInt(sqrt(1+sin(x)),x,0,2pi)
Bruh
how u went from this
to this
half angle
I'm cooked
oh yeah mb
(you can of course split the integral up into the "positive" and "negative" bits to take account of that, then easy-ish steps
)
Closed by @dusk pier
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 turn this into a system of eqations
start by introducing variables to represent
number of adults
number of senior citizens
its recommended that you use ones that resemble/relate to what they represent
what do $20a and $10s represent
20 dollars per adult and 10 dollars per senior
that would be incorrect
what would be correct
$20/adult is the given price,
20a is different from that
$20a is
the price for 1 adult ticket
multiplied by
the number of adults
which will be the total from adult tickets
(you'll need this value, you weren't clear about what it actually represented)
same idea for $10s
can you try setting up your equations now?
yeah i dont knwo how to
which will be the total from adult tickets
do you understnad that?
no, i'm just quoting part what i typed earlier
oh
$20a is
the price for 1 adult ticket
multiplied by
the number of adults
which will be the total from adult tickets
yeah i get that
and 10s is the price of the senior tickets times the number of seniors?
yes
so is it 20a + 10s = 5730 or something like that
and so if i wanna find only the amount of adults and senior tickets withoiut the price is it a + s = 477
so
20a + 10s = 5730
a + s = 477
lemme elim and see if i get the right answer
did i write the equation wrong
i just got 381
oh yeah
447
not 477
ok so i still did it right
thanks
.close
Closed by @plucky prairie
Use .reopen if this was a mistake.