50. practice questions on translations(part 1)

  Рет қаралды 9,964

GATE CSE LECTURES BY AMIT KHURANA

GATE CSE LECTURES BY AMIT KHURANA

Күн бұрын

📍 Telegram channel link(for NOTES and DOUBTS)
t.me/gatecsele...
📍I will cover entire 'GATE CS-IT' syllabus and make videos🎥 of each and every PYQ on youtube.
📍I am not taking even a single rupee💸 from any student👩🏻‍💻.
📍If you want to support me😀then you can donate💰any amount of money according to your wish🤞🏻.
📍UPI ID ⬇️
tinyurl.com/AK...
📚 Subject Wise Playlist 📚
📖 Pointers In C - • Pointers in C (from C ...
📖 DBMS -
• Databases (DBMS) for G...
📖 COMPUTER NETWORK (CN) -
• Computer Networks (CN)...
📖 DISCRETE MATHS -
• Discrete Mathematics f...
🔖Logic - • Logic (from Discrete M...
🔖 Combinatorics -
• Combinatorics (from Di...
🔖 Set Theory -
• Set Theory (from Discr...
🔖 Group Theory -
• Group Theory (from Dis...
🔖 Graph Theory -
• Graph Theory (from Dis...
🔖 Poset Lattice And Boolean Algebra -
• Poset Lattice and Bool...
🔖 Generating Function -
• Generating Functions (...
🔖 Discrete Probability -
• Discrete Probability (...
📖 TOC -
• Theory of Computation ...
📖 Digital Logic -
• Digital Logic for GATE...
📖 C Language -
• C Language for GATE - ...
📖 Aptitude -
• Aptitude for GATE - Co...
📋 PYQ and Solutions 📋
▶️ GATE 2020 CSE Solution -
• GATE CSE 2020 Solutions
▶️ DBMS Gate Questions -
• GATE PYQs | DBMS
▶️ CN Gate Questions -
• GATE PYQs | Computer N...
▶️ Logic Gate Questions -
• GATE PYQs | Logic
▶️ GATE 2021 SET 1 SOLUTIONS -
• GATE CSE 2021 Solutions
▶️ Combinatorics Gate Questions -
• GATE PYQs | Combinatorics
▶️ Set Theory Gate Questions -
• GATE PYQs | Set Theory
▶️ Group Theory Gate Questions -
• GATE PYQs | Group Theory
👩🏻‍🎓 TOPPERS PODCAST - • The GATE Toppers Podcast
📽️ General Videos -
• General Videos
gate cse,gate computer science,gate lectures,gate computer science lectures,amit sir,gatecse,computer science,cs,computer,air 1,top rank gate,best lectures for gate,complete lectures for gate,gate 2022,gate 2023,gate cse 2022,gate cse 2023,toc,dbms,combinatorics,discrete maths,group theory,gate cse lectures,gate cse preparation strategy,gate cse preparation
gate cse,gate computer science,gate lectures,gate computer science lectures,amit sir,gatecse,computer science,cs,computer,air 1,top rank gate,best lectures for gate,complete lectures for gate,gate 2022,gate 2023,gate cse 2022,gate cse 2023,gate cse lectures,gate cse preparation,gate cse preparation strategy,reasoning syllabus for gate,reasoning syllabus,reasoning,what is reasoning,syllabus of reasoning,free reasoning classes,reasoning gate cse

Пікірлер: 44
@pushkarkumar7173
@pushkarkumar7173 3 жыл бұрын
Whenever I have a 1%doubt you immediately resolve in video.thanks for considering some common doubt
@patelheet2080
@patelheet2080 3 жыл бұрын
Sir you have changed the whole resolution of sociality in real life .. Beacause whatever we think in a real life ( or we can say intuition ) is totally different in terms of logic .. So I want to give a big round of applause to you sir ...👏👏👏👏for exposing out the actual reality in terms of logic ... Now I understand the fact of logic ....
@karmpatel6832
@karmpatel6832 3 жыл бұрын
At 24:21 When you ask "Samaj rahe ho" & then immediately you answer "nai samaj paye" :)) Sometimes, I thought about how you visualize a student in front of camera & can involve in this much level !!
@ashutoshtripathy3015
@ashutoshtripathy3015 2 жыл бұрын
THAT THINGS I AM ALSO THINKING A LOT. IN ONLINE WITHOUT ANY STUDENT HOW SIR IS EXPLAINING ALONE ??
@evolve_everyday_0911
@evolve_everyday_0911 Жыл бұрын
SAMEEEEE....I legit laughed bcz I thought he read my mind
@kanchangupta538
@kanchangupta538 5 ай бұрын
he explained a lot a lot. marvellous efforts.
@parththakor7362
@parththakor7362 8 ай бұрын
Sir you are perfect 💞....
@atreyarao2202
@atreyarao2202 2 ай бұрын
For people who have done programming there is a easier way to understand the above concept and an easier way to solve it. [Explanation will take time, but once you get the jist you will find it very easy] Assume domain as an array of objects. Now lets take 1 example : "Birds can fly", B(x): x is bird, F(X): x can fly 1) Domain: Universe, so in our array assume all objects in universe now to make the statement "Birds can fly" true how many times we need to iterate the array? Till the end right? so we use "For All X". now run a for loop and inside it you need to write an if condition representation of "Birds can fly" which returns true for "every" elements in array. This condition would be : if( B(X) && F(X) ) This condition when you run on array of all objects will return false for not a bird as well, for example 1st element was a bird but 2nd element was building, now for building it s returning false, but we dont care about other objects in universe we are only concerned with birds so I can modify if condition like this: if( (B(X) && F(X)) || !B(X)) if not bird then condition becomes true! now above condition in logic is: (B(X) ^ F(X)) V -B(X) => -B(X) + F(X) // absorption law B(X)->F(X) because we need to iterate the entire array it is "For All X" so answer is: ForAllX ( B(X)->F(X) ) 2) some birds can fly Now in an array of all objects in universe to check if " some birds can fly " should I iterate the entire array or iterate till I get a bird which can fly? iterate till I get a bird which can fly right? so we use "There exist". now right an if condition which matches this condition and "breaks" the for loop if found, as we are not worried about elements after that. if(B(X) && F(X)), // this will be true when object is bird and it can fly. so: ThereExistX ( B(X) ^ F(X)) a) For "For All X," assume you're writing a function that takes two parameters: an array and a condition. The function should return true if the condition is true for all elements in the array. b) For "There exists X," assume you're writing a function that also takes two parameters: an array and a condition. This function should return true as soon as it finds a single element that matches the condition. You only need to write condition for both 3) some birds can't fly so as you need to find only 1 bird which cant find to prove the above statement true we use "there exist X" if condition can be: if(B(X) && !F(X)) =>theirExistX B(X) ^ -F(X) 4)Not all birds can fly: I need to find one bird which cannot fly so I will use "There exist" if( B(X) && !F(X))=> "ThereExistX" (B(X) ^ -F(X)). All problems can be solved with this.
@GateCse-2025
@GateCse-2025 Ай бұрын
mere bhai rank 1 tu hi layega..😂😂
@Ounknown098
@Ounknown098 11 ай бұрын
Bahot hard explaination mja aa gya sir ❤❤
@KULDEEPKUMARPRAJAPATI-lr1zp
@KULDEEPKUMARPRAJAPATI-lr1zp 8 ай бұрын
@46:25 since in general (A ->B)->C is equivalent to ((A and B )-> C) so, here we can also write as (for all)x[(c(x)->f(x))->d(x)] , am I correct @GATE CSE LECTURES BY AMIT KHURANA, sir??
@Rohan219Chavan
@Rohan219Chavan Жыл бұрын
Isn't "All birds can't fly" same as "Birds can't fly" ? I m stating the statement based on the predicate logic statement we got in respective cases.
@pavansingh8089
@pavansingh8089 Жыл бұрын
You can see this post may be it's help you..... kzbin.infoJLeH9rQ3L_Y?feature=share
@aman_wild
@aman_wild Жыл бұрын
same doubt i have
@vrengineers2462
@vrengineers2462 Жыл бұрын
sir, your teaching is better than " RAMESH SUNDARAM ".....
@ajaybanshkar55
@ajaybanshkar55 Жыл бұрын
28:44 Vx(Bx-->~Fx) is it right?
@aditiy5138
@aditiy5138 2 жыл бұрын
thank u very very much sir !
@Rohan219Chavan
@Rohan219Chavan Жыл бұрын
Did you appeared in GATE exam 2023? or aiming for 2024?
@aditiy5138
@aditiy5138 Жыл бұрын
@@Rohan219Chavan I'm preparing for 2024
@pawanchoure1289
@pawanchoure1289 2 жыл бұрын
very nice sir.........
@sanyasingh333
@sanyasingh333 2 жыл бұрын
I didn't understand the ques-1 @8:45 Sir first says that @8:47 "Birds can't fly" means "All Birds can't fly " thats why we write "for all" quantifier But he said that "Birds can't fly" is not equivalent to "All birds can't fly" if All & Every is same then why "All birds can't fly" is not equal to ques-3 @10:30 he said tha "Not every bird can fly" is same as "Not all birds can fly" because "Every" & "All" are equivalent Then why not "All birds can't fly" is not equivalent to "Every birds can't fly" ?
@neelkapatel4410
@neelkapatel4410 2 жыл бұрын
Hello, is your doubt clear now? i also have same doubt please reply🙏
@pavansingh8089
@pavansingh8089 Жыл бұрын
See this post may be it's help you..... kzbin.infoJLeH9rQ3L_Y?feature=share
@aman_wild
@aman_wild Жыл бұрын
same doubt
@The_hustle_
@The_hustle_ 2 жыл бұрын
best content ...
@rowhitsharma410
@rowhitsharma410 2 жыл бұрын
JUST PERFECT
@abirchoudhury4455
@abirchoudhury4455 2 ай бұрын
How is the statement "Not all bird can fly" and "Every bird can't fly" are equivalent. Are their logical translations equal anyhow ??
@vayudpandey5394
@vayudpandey5394 9 ай бұрын
Sir aap chidiya ud me hamesha jeete honge
@LipishaGupta
@LipishaGupta 8 ай бұрын
Thank you sir
@Ramu9119
@Ramu9119 Жыл бұрын
samaj gaye guru ji ghee kha swaad aharaha hai
@vidhayakjpsingh2795
@vidhayakjpsingh2795 3 жыл бұрын
2:03 sir bird can fly or birds can fly dono m For all use hoga?
@AmitKhuranaSir
@AmitKhuranaSir 3 жыл бұрын
Yes....
@garvitmathur4270
@garvitmathur4270 11 ай бұрын
Sir can birds can't fly be negation of birds can fly ??
@cfyghu
@cfyghu 7 ай бұрын
High brow ❤❤❤❤❤❤
@Prabhat56682
@Prabhat56682 3 жыл бұрын
Thank you so much sir
@pavansingh8089
@pavansingh8089 Жыл бұрын
Thanks Sir.....
@cosmophile8218
@cosmophile8218 Жыл бұрын
watch out at @8;02
@MISHRAMANASATUL
@MISHRAMANASATUL 10 ай бұрын
I hate birds
@sushant123rocky7
@sushant123rocky7 2 жыл бұрын
I think isme sir ne by mistake "all birds can't fly" ko "Not all birds can fly" ke sath equate kr dia hai......"all birds can't fly" and "birds can't fly" should be equal right??
@AmitKhuranaSir
@AmitKhuranaSir 2 жыл бұрын
Please watch my lecture carefully you will get your answer.... All birds can't fly and birds can't fly are not same....
@Rohan219Chavan
@Rohan219Chavan Жыл бұрын
@@AmitKhuranaSir Sir with reference to 1st question and 3rd question. Isn't the 3rd statement the negation of the first. if yes, then Ax(B(x)->F(x)) ko ~[Ax (B(x)->F(x))] kar ke solve kar sakte he kya?
@pavansingh8089
@pavansingh8089 Жыл бұрын
​@@Rohan219Chavan No, 3rd statement is not the negation of 1st statement.
@prabalsingh8181
@prabalsingh8181 Жыл бұрын
properties of quantifier states that (for all) --> (there exist) ..... i.e strong --> weak. so all birds can't fly --> some birds can't fly. and if some birds can't fly then not all birds can fly..... now ,,,, talking about birds can't fly it has no relation with birds can't fly....
@lovelyfamily4886
@lovelyfamily4886 Жыл бұрын
4/7/23
51. practice questions on translations(part 2)
1:06:48
GATE CSE LECTURES BY AMIT KHURANA
Рет қаралды 9 М.
52. practice questions on translations(part 3)
42:47
GATE CSE LECTURES BY AMIT KHURANA
Рет қаралды 8 М.
Disrespect or Respect 💔❤️
00:27
Thiago Productions
Рет қаралды 40 МЛН
Увеличили моцареллу для @Lorenzo.bagnati
00:48
Кушать Хочу
Рет қаралды 8 МЛН
ЛУЧШИЙ ФОКУС + секрет! #shorts
00:12
Роман Magic
Рет қаралды 39 МЛН
49. basics of translations in predicate logic
41:10
GATE CSE LECTURES BY AMIT KHURANA
Рет қаралды 11 М.
American was shocked by 7 Slavic countries word differences!!
15:29
World Friends
Рет қаралды 477 М.
66. practice questions on permutations part 1
56:44
GATE CSE LECTURES BY AMIT KHURANA
Рет қаралды 20 М.
68. practice questions on permutations part 3
52:43
GATE CSE LECTURES BY AMIT KHURANA
Рет қаралды 14 М.
GATE 2018 Question On Logic Part 1
39:53
GATE CSE LECTURES BY AMIT KHURANA
Рет қаралды 4,5 М.
67. practice questions on permutations part 2
43:46
GATE CSE LECTURES BY AMIT KHURANA
Рет қаралды 15 М.
54. translating at least, at most and exactly
1:06:50
GATE CSE LECTURES BY AMIT KHURANA
Рет қаралды 10 М.
56. GATE 2004,2005 and 2006 QUESTION ON LOGIC
10:29
GATE CSE LECTURES BY AMIT KHURANA
Рет қаралды 5 М.
Durability test of Galaxy Note 8 vs S24 Ultra 😁 #galaxynote8 #s24ultra #iphonexr
0:28
Samsung® telefonlara dair herşey
Рет қаралды 27 МЛН
Handy remote!
0:25
LeraKek
Рет қаралды 5 МЛН
СКОЛЬКО СТОИТ КАЖДЫЙ КОМП APPLE? (Ч.1)
0:37
ТЕСЛЕР
Рет қаралды 266 М.
Оу МАЙ! Огромный ПЛАНШЕТ, в котором ЕСТЬ ВСЁ! И очумелый SHARK 3!
16:43
Гениальная замена кнопки CTRL в США
0:15
Сергей Милушкин
Рет қаралды 3,9 МЛН