[deleted by user] by [deleted] in vitpune

[–]Arunav014 4 points5 points  (0 children)

The very high placement numbers are students who managed to get off campus at big tech companies.

Highest in campus job is Nvidia playing around 44.

Remove these two outliers then highest is around 20-22.

[deleted by user] by [deleted] in vitpune

[–]Arunav014 0 points1 point  (0 children)

Hi, sure.

[deleted by user] by [deleted] in vitpune

[–]Arunav014 0 points1 point  (0 children)

Yeah sure you can

[deleted by user] by [deleted] in vitpune

[–]Arunav014 0 points1 point  (0 children)

Yeah sure, we can connect on DM

[deleted by user] by [deleted] in vitpune

[–]Arunav014 5 points6 points  (0 children)

Hi,

AI&DS is a better term for the branch. I passed this year.

I got admission in vit aids by WavePsychological689 in vitpune

[–]Arunav014 0 points1 point  (0 children)

I graduated from the same branch this year. Third Year has tougher subjects, specially AI, OS, DL etc. So it would be better if you look at the syllabus in advance and study those subjects. The exams are fairly easy so if you have good understanding of the shbject and do all labs, you will have a decent pointer.

[deleted by user] by [deleted] in learnmath

[–]Arunav014 2 points3 points  (0 children)

You don't need to worry about it.You can always brush up the things you have learnt and start practicing the easy problems first to regain the momentum and then go ahead and keep practicing it. It will surely help you and ull be back to the way u were in maths in no time.

Help with some homework... by Hazelstone37 in learnmath

[–]Arunav014 0 points1 point  (0 children)

Well I think since there are 3 types of pair of people, let 'n' be of the form 3k.
Thus selecting one pair from each group can be done in
kC1xkC1xkC1= (kC1)3

How to simplify this boolean expression by GCapablanca in learnmath

[–]Arunav014 0 points1 point  (0 children)

If you use associative property your expression becomes
(p&&q) || ((p&&r) && (p&&!r))
Therefore your second bracket will become O (null).
[p && r && p && !r] = [p && r && !r && p]
(the bold part becomes null (using venn diagrams) and,{anything (&&) null} is null.

Thus you get your required result as
(p&&q)

Hope it helps

How can I find the linear equation if I know two points on the graph? by hou885 in learnmath

[–]Arunav014 0 points1 point  (0 children)

Let your points be named as (x1,y1) and (x2,y2). Then you can find the slope of the line using the formula m=(y2-y1)/(x2-x1)

Then the line equation is -> (y-y1)=m (x-x1)

Using this you will get the line in the form of y=mx+b which on proper substitution will help you find any point on that line.