#help-10
1 messages · Page 540 of 1
Np
@scenic hedge Has your question been resolved?
Closed by @scenic hedge
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.
https://media.discordapp.net/attachments/938192269553598537/963899697045594112/IMG_20220413_223246.jpg?width=494&height=464 , any idea what i did wrong here? when i tried to calculate it with fromulas An , Sn , S5 equals 65 , but when i tried just summing a1+a2+a3+a4+a5 , i got different result althought i think i should get exactly same thing
@red lynx Has your question been resolved?
<@&286206848099549185>
What formula is that?
its artihmetic progression
Standard formula is k(k+1)(2k+2)/6
Is your series on that form?
yea
No it is not
it is
No it is not
yes it is
Closed by @red lynx
Use .reopen if this was a mistake.
When I ask is in on this form maybe recheck what arithemetic progression even is before saying “yes” multiple times
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 am able to do (a) and the first part of (b). However I am unsure on how to approach the second bit of (b) and the entire of (c).
Ah I see
Okay so
Use your limit chain rules
C(1 - exp( [lim] -at))
Im too lazy to use latex
I may have not learnt that yet
you haven't learned limits but you're doing differential equations?
Nope, this was just given
They usually don't teach limit chain rules
Which is dumb, they should
Or whatever it's called
Oh, i’ll look that up right now
In this video, we talk about finding the limit of a function using the method of the chain rule. For more help, visit www.symbolab.com
Like us on Facebook: https://www.facebook.com/Symbolab/
Follow us on Twitter: @symbolab
Thank you
Basically you wanna take the limit of the actual t
And then take that value
And use it as part of the function
Idk if he's from here, but in the UK standard curriculum is that significantly more is taught about differential equations before anything more than a basic understanding of the concept of a limit is taught
Yep from UK, the concept of limit wasn’t really taught much
Probably with differentiation but it was more of just memorising than explaining
The limit video still confused me but i’ll just try to solve it
Yeah there's much more to limits and solving them than differentiation from first principles
There's some limit stuff in FP1
Closed by @mellow fog
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 some combinatorial optimization.
The problem I am trying to solve is this: Say I have an item that I want to craft, which requires a certain amount of 6 elements in order to craft, those elements being Wind, Water, Life, Fire, Void, and Death. In order to craft this, I must combine parts which each have their own elemental values. What is the minimum amount of parts needed to craft an item such that the sum of the parts is at least the requisite value?
My understanding is that this is some sort of knapsack problem, however what I fail to understand is because there is no weight limit, only a minimum threshold that must be met, the programming is a bit different. I have tried to adapt code for a knapsack problem with one constraint, to no avail. Additionally, most code tells you the maximum value you can have with the given weight limit, but I need to return a list of the number of each item it will take to satisfy the recipe (e.g. "You need 3 Discombobulators, 2 Recombobulators, 1 Dislocator, and 3 Relocators."). I have looked into this wikipedia article (https://en.wikipedia.org/wiki/List_of_knapsack_problems#Multiple_constraints), but the contents fly over my head. I have even tried reduced row echelon form matrices, which works fine when there is only one solution, but spits out gibberish when there are multiple solutions. Can anyone please help me?
The knapsack problem is one of the most studied problems in combinatorial optimization, with many real-life applications. For this reason, many special cases and generalizations have been examined.Common to all versions are a set of n items, with each item
1
≤
j
≤
n
{\displa...
<@&286206848099549185>
Say I have an item that I want to craft, which requires a certain amount of 6 elements in order to craft, those elements being Wind, Water, Life, Fire, Void, and Death. In order to craft this, I must combine parts which each have their own elemental values. What is the minimum amount of parts needed to craft an item such that the sum of the parts is at least the requisite value?
depends on the rules for combination
There aren’t any rules, you can have as many of the same item as needed, and there are no forbidden combinations
if you have 1 wind, can that turn into 6 elements? 1 of each element
Every item you would be combining is guaranteed to have some integer amount of the 6 elements. So one might have 5 wind, 3 water, 0 life, -6 fire, 3 void, and 2 death
And say, for example, you have an item that you want to craft that requires 50 wind, 25 water, 0 life, 15 fire, 70 void, and 30 death
In my real data set, I have 69 possible items to be combined, each with their own elemental values
just pick an order for your 6 elements, say alphabetical, and phrase your problem in terms of vectors of length 6
you have [d,f,l,v,wa,wi] of stuff. what is your question regarding crafting
$[d,f,l,v,wa,wi] \in \N^6$
riemann
So, I want to figure out the combination using the least number of items
so you want to minimize $d + f + l + v + wa + wi$ subject to some constraint. define that constraint
riemann
Hmmm
Well I would want the number of items used to be as close to 0 as possible, is that a valid constraint?
Say I have an item that I want to craft, which requires a certain amount of 6 elements in order to craft, those elements being Wind, Water, Life, Fire, Void, and Death. In order to craft this, I must combine parts which each have their own elemental values. What is the minimum amount of parts needed to craft an item such that the sum of the parts is at least the requisite value?
rephrase this explicitly. define "combine", "own elemental values" etc.
you have 69 types, with unlimited amount of each right?
yeah, you said as many as needed ok
I must add the values of an item's respective elemental values to a running total based on that element. If I combine a dinglehopper with wind = 6, water = -2, life = 3, fire = 7, void = 0, and death = 5, with a tinglestopper, with a wind = 2, water = -4, life = 0, fire = 2, void = 1, and death = 7, the total is wind = 8, water = -6, life = 3, fire = 9, void = 1, and death = 12.
They have their own elemental values, meaning that each item has 6 immutable properties that contribute to the running total. The goal is to have said running total be at least the amount required to craft the item
Yea this is a dynamic programming problem
I'd look on leet code for something like this
it's linear programming
from wiki on simplex method
it's exaclty like this, you minimize a+b+c+d...
and you have conditions like -7a + 4b ... >= something
@golden bone Has your question been resolved?
(unless it can't handle negatives)
So how would I state that the number of items should be as close to zero as possible?
Could this be related? https://en.wikipedia.org/wiki/Integer_programming
An integer programming problem is a mathematical optimization or feasibility program in which some or all of the variables are restricted to be integers. In many settings the term refers to integer linear programming (ILP), in which the objective function and the constraints (other than the integer constraints) are linear.
Integer programming is...
Also, what does Z represent?
it's just the target
it's either maximized or minimiazed
it basically worked
give a real example
i'll translate to whatever this is
A real example?
[[0,-2,3,5,0,1],[2,-2,0,3,0,5],[0,2,3,0,-2,5],[3,-2,0,5,0,2],[2,0,3,-2,0,5],[0,5,2,-2,3,0],[5,-2,2,0,3,0],[3,0,5,0,2,-2],[5,2,3,-2,0,0],[5,-2,2,0,3,0],[-2,0,3,0,5,2],[5,0,-2,2,3,0],[2,0,-2,0,5,3],[1,0,0,-2,5,3],[5,0,2,0,3,-2],[5,0,-2,0,3,0],[2,5,3,0,-2,0],[5,0,3,0,2,-2],[2,3,5,-2,0,0],[3,-2,0,5,0,2],[0,-2,2,5,0,3],[0,0,3,2,-2,5],[2,-2,0,5,0,3],[2,0,0,-2,3,5],[2,5,0,-2,3,0],[3,0,2,0,5,-2],[0,5,3,-2,2,0],[0,-2,3,5,0,2],[2,0,3,-2,0,5],[2,0,3,0,-2,5],[0,2,3,0,5,-2],[0,0,3,-2,5,2],[3,-2,0,5,2,0],[0,0,3,-2,5,2],[5,3,0,-2,0,2],[0,-2,3,5,0,2],[2,2,5,-2,3,0],[0,5,3,-2,0,2],[5,-2,0,0,3,2],[2,0,3,0,5,-2],[0,0,5,3,2,-2],[0,0,3,2,-2,5],[3,-2,0,5,2,0],[0,3,5,0,2,-2],[0,0,3,2,-2,5],[5,0,-2,0,2,3],[0,3,2,-2,0,5],[0,-2,5,2,3,0],[0,5,3,-2,2,0],[5,2,-2,3,0,0],[0,2,3,0,-2,5],[0,3,5,-2,2,0],[2,0,0,-2,3,5],[0,-2,2,5,0,3],[-2,3,0,2,0,5],[5,2,-2,0,3,0],[5,3,-2,0,2,0],[5,0,3,-2,2,0],[3,0,-2,0,2,5],[2,-2,5,0,3,0],[0,3,2,0,-2,5],[2,0,3,0,-2,5],[2,0,-2,5,0,3],[2,0,-2,5,3,0],[0,2,3,-2,0,5],[3,-2,3,5,2,0],[0,1,5,-2,0,3],[3,0,0,-2,2,5],[3,0,-2,0,5,2]]
I don't know if that helps
yeah perfect
Each list is an item, and each number is an elemental value
Index one is wind, index 2 is water, etc.
And a recipe I'd like to figure out is [45, 80, 150, 5, 45, 10]
yep almost done
solved instantly with 38 items
the solution can;t uh
be read
it's in this scrolling thing, i'll need to find a way to format it
Ah okay, being able to interpret the output is kinda the whole thing lol
Ideally I’d like the final output to be “You need x of this item, x of this item, and x of this item”
I have a list of the names as strings, if the program accepts those
They’re index-matched
@golden bone Has your question been resolved?
Closed by @golden bone
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 is this the wrong parameterization? i tried negative as well
.close
Closed by @hallow dock
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 you solve for zeros in terms of one variable when there are two vairables in the equation?
you can rearrange that as a function of y in terms of x
what would that accomplish?
u set y=0 then solve from there yeah?
right
so rewrite this as y= something
set equal to zero and solve
ok thanks, Im trying to find the eigenvalue of a matrix when the matrix has an unknown variable in it so I'll try to apply this to that then
ty
.close
Closed by @bronze bronze
Use .reopen if this was a mistake.
.reopen
✅
one more thing quick sorry, if I'm trying to get y = I get y-y on the left side, does that mean I should do something differently or do I just solve for zeros normally since it's always equal to 0 then
i think you might be messing up somewhere
never mind actually I did it wrong lmao, it was yx-y which wouldnt get to y-y bc u cant pull out x from both
yeah I always make small mistakes like that smh
lmao ty again
.close
Closed by @bronze bronze
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.
@knotty lodge Has your question been resolved?
.close
Closed by @knotty lodge
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 $x,y,z$ be positive real numbers such that $x+y+z=1$. Find the maximum value of $x^3y^2z$
suck2015
How would you solve this w/ AM-GM?
@jagged dagger Has your question been resolved?
.close
Closed by @jagged dagger
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 worked out the equation (8w^2 +3w^3 +4w =170) for the container but what confuses me is the problem asking me to use the iterative method to determine the solution
@rugged flower Has your question been resolved?
@rugged flower Has your question been resolved?
why does it keep saying that?
@rugged flower 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.
Total area?
Can somebody explain to me these two things
-
Why did they convert -5 to positive +5? Would an answer be possible with -5 in the first quadrant?
-
Since the x1-x2 (x - y = 0) line is 45 degree, how do we know which side to shade
oh its taken
Is the 1/4 circle a length or a percentage of the circle
A percentage of the circle
Is it the same circle as the semicircle on the bottom
clearly its not
I don't think that diagram has sufficient information
I think it does
It's not in the question, idk
Nothing
I have written all the assumptions.
I am guessing left and right sections on the egg, are sections of a circle with an angle of 45 degrees?
I have calculated the area of the triangle and the 1/2 circle and I need to find the area of the parts of circles and the 1/4 circle.
It is not mentioned in the question, I do not know
Because it says the curve is apart of a circle the curve will have a constant change in angle,
And Given the angle doesn't change between sections.
Therefore If you can figure out what change in angle is of the arc. You can figure out what percentage of a circle it is
right?
Wdym?
Trying to figure out what percentage of a circle arc for the left and right sections
To use find an expression for the radius of the top circle
Did you get the answer to the question?
no I am bit stuck I can see that it is possible though making a model in desmos lol
Do you get What I mean with the change in angle?
No
My problem is in calculating the area of the circle parts
What can we do for that?
well we need the angle and the radius from the centre of each circle section
How can I find it?
The change in the arc angle from horizontal is the same as the angle from the centre for the Sections on the left and right
Please show your solution
i am not there yet
sorry
<@&286206848099549185>
The left and right sections are 1/16th of a circle
Ah I got what you mean
I can do the rest
You can create 2 simulatanous equations with the Point of at the end of the left arc interms of the top circles radius and then again with the left sections radius
the radius of the 1/4 circle is 4-2√2
I don't think so
yeah but the top circle radius is not that i only because it doesn't line up on the desmos model though
AB=AO+OB
4=AO+2√2
AO=4-2√2=OD
AB=BC=CD=CB=4
top radius$ = 2\sqrt{2}+2\sqrt{2+\sqrt{2}}-2-2\sqrt{2}\sqrt{2-\sqrt{2}}$
$2\sqrt{2}+2\sqrt{2+\sqrt{2}}-2-2\sqrt{2}\sqrt{2-\sqrt{2}}$
Tanjiha
Does the 2nd line come with question
Which one?
The area is:
$6-4\sqrt{2}$
Tanjiha
Is this the whole question or just the assumptions you made
The assumptions I made
I know
i am dumb
I got $12\pi-4\pi \sqrt{2}$
Tanjiha
The options:
$$(10+4\sqrt{2})\pi-4$$
$$(12-4\sqrt{2})\pi-4$$
$$(10+4\sqrt{2})\pi-4$$
$$(12+4\sqrt{2})\pi-4$$
Tanjiha
It should be $$(12-4\sqrt{2})\pi-4$$ lol
Tanjiha
I will close this channel.
Please dm me if you could find anything.
.close
Closed by @shell hull
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.
any idea how do i do q4ii? my working for 4i is there
@hexed imp do you know how to find equations of tangent lines?
y=mx+c
...i didn't ask you to rattle off a formula
?
i asked you a yes/no question
but let me be more explicit
if you were given the graph of a function y = f(x) and asked to find the equation of its tangent line at x=c, would you be able to do it? yes or no
yea... sorry I didn't read ur question properly lol
:|
but ok
so...find the equations of both tangent lines, then find their point of intersection
Closed by @hexed imp
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
Yeah
No but it’s says ‘the sum of this number and the three individual digits add to 429
yeah
So won’t it be the number + a + b + c
so lets assume that the house number is abc then
Yeah
Ik the answer
But I don’t know how to do it
I am practicing for the junior ukmt
In fact it gave a brief paragraph of how to solve but I don’t get it
Here it the answer but I don’t get the explanation
Here were the five choices
its 28
Ik but how?
oh wait
ik now
the sum of a+b+c is at most 27
because 9+9+9 is 27
right
and u cant go any further
now moving on
and the numbers must be in the 410s or the 420
so lets say
the last digit is d right
lets say its in the 410s
do 410+2d+5=429
2d=14
d=7
that means 417
@compact remnant 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'm trying to prove that the Sorgenfry line is totally disconnected
,tex
Let $I$ be an interval in the Sorgenfry line for $a,b \in \mathbb{R}$ where $a \le b$
If $a = b$, then $I$ is a singleton set and that it is connected.
if $a \neq b$, then $\exists c \in \mathbb{R}$ s.t.\ $a \le c \le b$. Then $[a,c),[c,b) \in I$, we see that $[a,c) \cap [c,b) = \emptyset$ and $[a,c) \cup [c,b) = I$, so $[a,c)$ and $[c,b)$ are disconnected
ArtyLeAardvark
This is what I have so far so I have 2 disconnected intervals what can I do from there?
well you have shown that any interval of the form [a,b) decomposes into the union of two disjoint open sets
and hence is disconnected
any two points can be disconnected in this way
So my proof is complete?
I'm also not sure if this needs more explanation, but it is obvious right?
yes
Closed by @odd stag
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 guys i want to ask a silly question
Hii can someone help me with those questions
@dark cloak this channel is occupied, please read #❓how-to-get-help
@stark igloo yes, this reads as though it should be about 55g (depending on how much "about 50g" refers to)
ok thank you
@stark igloo 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.
- x=60
<adc = <dcb
cuz circle
ab = diameter
wait f no
ok here
since its a circle
unless there are 2 parallel chords, you will not get perfect multiples of 10
Ok
heres why
But how do I get x
Ok
Ok
so
bcd = 120
angle
bcd
then
angle bad = angle abc right?
cuz trapezium
in a circle
u there?
so did u get what im saying?
im using triangle congruency to find all angles of the triangle
Ok then how is x 60
<@&286206848099549185> can you help
<@&286206848099549185> pls
Hello
Pls
@helpers
@tall 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.
how would i find the dimensions of a square based prism if its height is twice the side length of the square?
yep
does it need to be in terms of anything
mm
you know what dimensions are?
we can use units then i can change it
in millimeters*
so in this instance the volume is 1228.25 mm cubed
i know what the answer is but i want to know how to get it
then do l•w•h=1228.25
plug it in as the solution
kinda giving you the answer
whoops
yeah but im not supposed to know the answer
area of base x height
what is 'that'
essentially
then plug the values of the dimensions in terms of x for base and height
and then solve for x
wdym plug
basically make b the area of the square and h for the height of the prism
the squares side length is x
yeah
do you know the formula of a square?
.
dw I make that mistake too
x^2 + 2x = 1228.25
it’s annoying
it’s base times height
you’re adding the height to the base
x^2 x 2x\
you can actually simplify that
2 x x^3
nah discord doesn’t allow it
2*x^3
yea
2x^3=1228.25
and simplify until you get x=answer
If Im not stupid then the answer should be ||8.5||
so theres an issue
what is the issue
i cant find the indices button on my calculator
there is no exponent
yes
you simplify by reversing pemdas
and doing the opposite operation
ok fine
basically
2x^3
in order to simplify it we need to find the operation closest to addition
which in this case is multiplication
this is my calculator where is the exponent button
indices
fine indices
yes
but you can just do x^3 as (x^2)(x)
i have an idea
how do you get rid of the two?
divide both sides by 2
yea
x^3=1228.25/2
and do inverse operations for x^3
8.5x8.5x17
mhm
Closed by @dense bridge
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 change y=mx+B formula for a Fc vs. v^2 graph
@thorn kite 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.
Yo
Its just splitting the integral up
Sn
?
Split it up correctly
Yh
Give me 5
Got distracted
Is this right intergral
Bruh sending taking ages
Ok I’ll write it
Took out a factor of 3/2 for the intergral of x
Then took out a factor of -2 for the integral of 1/x3
@timid silo 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 you need to make up a basis for a subspace that you have the equation of, I thought you needed to have the same number of vectors in the set as the dimension of the subspace. In one of our Gram-Schmidt process examples, the subspace is x-y+z = 0 but the basis the prof came up with only had two vectors (1,0,-1) and (1,1,0). Wouldn't you need 3? Maybe I'm just really confused but could someone explain?
If your system is x-y+z=0, you have 2 free variables and 1 dependent variable, so you have a 2-dimensional subspace of R^2
oh ok. How do you know that? I saw the x, y, z and assumed it was R^3
The number of variables involved isn't the dimension of the subspace. The number of equations (that are not redundant) determines the number of dimensions you lose. Here since you have 1 equation in 3D you have a 2D vector space. The number of variables used in the equation(s) is irrelevant: x+y+z=0 and x=0 both determine a plane
Oh ok that makes a bit more sense. Could you provide an example of when it would be in R^3?
Vectors in your space look like $\begin{pmatrix}y-z\y\z\end{pmatrix}$
Zorn's Lemon
What you have is the equation defining a specific plane in 3-dimensional space, basically. Try plotting your equation in geogebra 3d to see what you get: https://www.geogebra.org/3d
which one is the dependent variable?
The way that I wrote it is with y and z free and x dependent, but you can take your choice of the three
Which is to say, if you know two of your three coordinates, you can use the equation you have to find the third.
could you give me an example of when it would be in R^3? Would it need to be two equations?
oh ok
that kinda makes sense lol
Well your plane is already in R^3, it's just only part of R^3
Imagine you have a plane with a line on it
The plane is 2d, the line is a 1d subspace of the plane
Defined by 1 equation
This is just the same situation 1 dimension up
I'm still confused on how to tell what the dimension is. If it's in R^3 why doesn't the basis have 3 vectors?
Because it's not all of R^3. The basis has 2 vectors because it's a 2-dimensional part of R^3
Do you have a piece of paper?
yeah I do
The piece of paper is 2d, right?
yes
It's in 3d space, right?
yes
You can define any point on the piece of paper in 2 vectors
If you have a third vector, it's either not linearly independent so useless, or it points to somewhere not on the piece of paper
oooh that makes sense now.
The subspace you have, a subspace of R^3 defined by your 1 equation, is a 2-dimensional space in R^3. Just like how your piece of paper is a 2-dimensional space in our 3-dimensional world
that does make sense now! Ok One more question would be, what would the equation need to look like if it wasn't a plane but a 3D object?
Well, we'd be working somewhere other than R^3
If you wanted a 3d subspace of $\mathbb{R}^4$, you could try a single equation again, and you'd get vectors like $\begin{pmatrix}y-z\y\z\w\end{pmatrix}$.
Zorn's Lemon
If you wanted a 3d subspace of $\mathbb{R}^{5}$, it would be defined by two equations. Etc.
Zorn's Lemon
The only 3d subspace of R^3 is R^3 itself. There are shapes in 3d that are proper subsets of R^3 (say, a filled-in sphere), but they aren't vector spaces.
oh ok I think that's where I was confused maybe. Because the plane isn't in R^3 but it's just a subspace of R^3
right?
Well it's "in" R^3 in the same way as your piece of paper is in our 3-dimensional world
Subspaces are indeed proper subsets
right but the basis for it is in R^2?
The basis for it is vectors in R^3. It happens to be that it is isomorphic to R^2 as a vector space, but it is not itself R^2
Put in some practice and I'm sure you'll get it.
thank you so much!
If you're done remember to .close
.close
Closed by @native anvil
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.
aa
@timid silo 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.
Closed due to the original message being deleted
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 ive came across problem that im a bit confused with: basically u need to express point B with a, ive tried to play around with coefficients because both lines are tangents of parabola, however then idk what to do
@stable plume 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.
@sterile basin Has your question been resolved?
Closed due to the original message being deleted
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 word pronlem about algebra
Mr. Avramenko would like to be more dashing, so he purchases a horse, a carriage, and a top hat for $11 557. The horse cost $350 less than the carriage but was more expensive than the top hat by a factor of eight hundred. How much did each item cost?
@stray summit Has your question been resolved?
<@&286206848099549185>
@stray summit Has your question been resolved?
Where is helpers
Closed by @stray summit
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 purely notational question here, I suppose. Ignoring the difference between a distance and a norm, pretending all norms can be distances in this scenario, I understand that the l^2 norm is the Euclidean distance, i.e., the square root of the sum of the squares, and the l_1 is the Taxicab distance. But, notationally, why is it written l^2 and l_1, a superscript and a subscript?
notation like that can sometimes vary from book to book. Your text might write it with a superscript to evoke the idea of the squares. But other texts won't.
it's weird, i've seen it in pretty much everywhere as l^2 and l_1
you can see ok wikipedia they mark them both as |x|_1 and |x|_2
like it makes sense, just wondering if there was a more concrete reason than 'idk just is' floating around
In mathematics, a norm is a function from a real or complex vector space to the non-negative real numbers that behaves in certain ways like the distance from the origin: it commutes with scaling, obeys a form of the triangle inequality, and is zero only at the origin. In particular, the Euclidean distance of a vector from the origin is a norm, c...
yea that's for denoting the actual norm, but they'd say 'this is the l_1 norm and the l^2 norm, |x|_1 and |x|_2'
well not wikipedia specifically, but most texts and books
not that I know of. maybe someone more familiar in analysis/topo might know though
Closed by @stiff minnow
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. I tried to compute x, and I got 20:
15/30 = 10/x
15x = 300
x = 20
I tried to compute y as well, and I got 24 :
15/30 = 12/y
15y = 360
y = 24
BUT when I try to compute the scale factor/similarity ratio, it results to 1/3:
15/45, lowest term: 1/3
The problem is, the things that I've computed are all scaled to 1/2, not 1/3:
15/30 = 10/20 = 12/24
1/2 = 1/2 = 1/2
did i miss something?
15/30 = 10/x doesn't work
oh
The 30 isnt part of a triangle
so it should be... 15/45?
Yes
Compare the big triangle to the smaller
y/12 and 45/15
or reverse it
12/y and 15/45
why is y/12 not 12+y, isn't 12 the smaller figure, and so i'm just adding the smaller figure to the partial measure of the bigger figure to get the overall measure of the bigger figure
idk if that make sense
No
y is the entire part of the larger triangle
Yes
alr, thank you so much
If they gave you a 12 and a y then y = 24
yep
Since the overall length has to be 3 * 12
You seem to get the idea though
Do you have any more questions?
Closed by @ivory spoke
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.
Need help with volume of frustum
I dont know how to find the second base area
Or is it based off a)? We find volume of full pyramid and subtract smaller pyramid
Part a is here
Closed by @sleek sinew
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.
Rayan makes $5 for every $3 that Stefan makes. When comparing their yearly salaries, if Rayan bought a $36000 car, they would have the same amount of money in the year. How much money did each person make?
Set up an equation to model the problem
I would do 360000 = 5-3x?
Think you need system of equations
First one is R - 36000 = S
2nd one is more tricky
how would i find the second one?
R = (constant)*S
How much Ryan makes is a constant tines the amount Stefan makes
Say you know Stefan makes $100
Or $500
To find Ryan, you multiply by the same number
so if he made $500 it would be $2500?
That ratio would be 5:1
The current ratio is 5:3
Stefan makes 3, Ryan makes 5
Stefan makes 21, Ryan makes 35
R = 3/5x S
Should be other way around
oh
Ryan makes more
Right
If S = 1000, your formula says Ryan makes less
so R = 5/3 x S would be correct?
Yeah
would i replace r with 36000?
You have R = 5/3 x S
R - 36000 = S
You have one variable isolated in system of eqns
So substitution is appropriate
Yes
How would I do it with this equation?
R = 5/3 X S
Imagine deleting R in the second equation
Replace with 5/3 X S
So you have a 3rd equation, with only S
So I would do
5/3xS=R
(5/3xS)-36000=S
K
I try to do system of equations with these 2 equations but it doesnt work
Get S by itself on left side
Move constants (36000) to right side
Do the opposite operation
On the RHS, we have positive 1S
Do the opposite to get S all on left side
Did you get (5/3)S - 1S?
I got something different but is this what I'm supposed to get?
Well you got (5/3)S - 36000 = S
We want S on left side, constants on opposite side
Subtract S both sides
(5/3)S - 1S = 2/3S
Add 36000 both sides
Then we get (2/3)S = 36000
Did you get that?
You can do other methods but should be sameish process
I got s = 54000
Equation for that is
54000/(5/3)?
R = 5/3 X S
If you did this, R would be less
This would be 54000 X 3/5
K
So r made 90000 and s made 54000?
Yeh
K ty
@stray summit Has your question been resolved?
Closed by @stray summit
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.
HEWLLO
I HAVE a realllly quick question that i really needs
Say you have f(x)=50+a lnx, and you have a point, (2, 15). How would you use this point to solve for a?
f(x) also means y, correct?
yeh
The point (2, 15) is an x, y coordinate pair
Plug in that coordinate and solve for a
alnx is a * lnx
Which is multiplication
You don't need the decimal equivalent of lnx
I seE
One last question
For exponentiala decay how do you know when y = 0, like isnt there an asymptote there
This equation for example
if I want to find how long it takes for this to reach 0 is there anythin i can do
You can still do 0 = 100(0.5)^x and solve for x
what are the tsteps
Actually wait
ah
Hm
so when youre asked "find when this equals 0" is it impossible to do with exponential decay?
@hidden bluff 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 hav eno idea
pick one and spend some time working on it
google the formula for length of a curve and understand it
so f'(x) is e^2x+2e^x+1 and i just find anti derivative
isnt dy/dx = dy/dt / dx/dt
.close
Closed by @harsh badge
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.
Pls help
Post work
@nocturne minnow sorry for the handwriting, I didnt expect to get a wrong answer and post here
There is a podsibility the question is wrong
Your method for taking the determinant looks very confusing
You should simplify that matrix first
so theres a possibility
oh
you mean i shoulda first evaluated
Element (3, 1 )is that 4 - 2?
No you did math wrong, from what it looks like
Determinant of 2 x 2 is ad - bc, correct?
wait
check element
check when i found z's minor
it should be +4
alright dude
it was calculation error
although i checkced it twice before posting
💀
ty
And you said it was impossible that you did math wrong
Or make your life easier by evaluating and make the matrix simpler to handle
You can make more mistakes doing mental math
💀
now i 100% understand why i score so less in maths even when i solve 90% of the paper
💀
this one was completely unexpected, i did it twice
:Skkull
Doing it twice doesn't necessarily mean that you did math correct the second time
@weary spruce Has your question been resolved?
Closed by @weary spruce
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
Could someone please help me understand the highlighted lines of working out in my study notes? Thank you
do you know the geometric series expansion?
can you write out the geometric series for that?
Do I throw a negative sign in there to make the denominator 1 - D/2?
Okay
I actually don't know
no. you don't invent negative signs out of thin air
$\frac{1}{1 + x} = \frac{1}{1-(-x)}$
riemann
Now do you know how to compute the geometric series?
Yes
That's what I meant sorry
Okay I know how to compute the geometric series but I still don't understand how I get from here to here
I feel like it's really obvious
Use the definition of D
those all look like different questions. putting them next to each other back-to-back-to-back is confusing
pick one and understand it first before moving on to new problems
@jade sail Has your question been resolved?
Closed by @jade sail
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 guys I need help finding hcf of this it is very hard <@&286206848099549185>
Thanks 🙏 god bless u
.close
Closed by @upbeat ruin
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 would like someone to walk me through set theory and subsets i think
i have a practice problem and id just like to be taught maybe
"Let A and B be subsets of the universal set U. Is the following statement true or false?"
B⊆(A∪B)
going in blind but i imagine it isnt that much
what does U mean
Think!
Best practice is to translate set theory into english
I'll just do this one for you.
"B is a subset of the union of A and B."
A union B
U is the universal set that contains all?
Alright, let me process this real quick haha
"B is a subset of the union of A and B."
is the union of A and B the universal set, as they are the subsets of U
i think that's what we figured out?
which would mean it's true
Let's say the universe is integers. And A is (1,2,3) and B is (4,5,6). Then what is A U B?
A+B doesn't have to be the Universe
ok
A u B would be
1,2,3,4,5,6?
because those are just the sets that are contained
but even though those are all integers they're not all of them in the universe
im sorry if im getting confused
which would make that one false if it's asking if A u B is the universe is integers?
Right, but it's not asking whether A u B is the universe. It's just asking whether B is a subset of A u B
4,5,6 would be a part of (1,2,3) (4,5,6) so yes?
or is it false
Yes its true
oh alright, so my explaining of the union and A and B was right?
is there like a way im supposed to write this out in work form, or is it kinda of just figured through logical thinking
Yeah you can just use words
of course there is
$\overline{A \cup B}$ consists of points that are not in the union of $A$ and $B$
Ann
$\overline{A} \cup \overline{B}$ consists of points that are not in $A$ or not in $B$
Ann
I think you should just keep in mind how contrapositives work
i.e $\overline{A\cup B} = \overline{A}\cap\overline{B}$
tw4040
im listening
wondering if maybe i picked up on it being false wrongfully
i think im just doubting myself there. think it is false
but what do you mean with this example?
You are correct in that it's false
$\overline{A\cup B} = \overline{A}\cap\overline{B} \neq \overline{A}\cup\overline{B}$
tw4040
I'm saying this question is easily solved by keeping in mind how to do contrapositives
ohh i see
wrong name
it's de morgan's laws
nothing to do with contrapositive
alright de morgans laws. i know a bit about those
okay i think i got it.
im actually going to bed now
thank you all
@timid silo Has your question been resolved?
.close
Closed by @royal basin
Use .reopen if this was a mistake.
(seeing as they went to bed...)
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.
J’aurai besoin d’aide sur cette exercice svp
@steady zenith Has your question been resolved?
@steady zenith 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.
Hey
I'm learning "new stuff", I have a 2d (vec2 and later 3d-vec3) question,.
Say I have 2 points, what do I call the thing that I'm trying to do that determing point between these 2 points using t, or % or distance, say what coordiante would a point have lying between the 2 vec2 points, what at 10% etc etc
not sure what u mean but ur prolly looking for 'parametrization'?
I think its this https://math.stackexchange.com/questions/393168/how-do-i-find-the-point-between-two-point-at-a-specific-distance-in-x-y-coordin
pythagoras theorem?
ok for these u could prolly use section formulae
hmmmm
with a combination of parametrization if it's 3D
lets start with 2d...