Page 2 of 2 FirstFirst 12
Results 16 to 30 of 30
  1. #16
    Threadstarter
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,391
    My Mood
    Stressed
    Quote Originally Posted by arunforce View Post


    not sure what you're trying to ask

    Here, I don't know what to do..


    Can you give me at least 1 example? Our professor didn't teach to us..

  2. #17
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    E U F = Integers excluding 0

    Here's the logic:

    E contains all even integers( ..., -4, -2, 2, 4 , ...)
    F contains all odd integers(..., -3, -1, 1, 3, ...)

    E U F = (..., -2, -1, 1, 2, ...)

    I exclude 0 because I think it is neither odd or even.

    For the x|x, it means x such as x...

    so x|x is an even integer = x such as x is an even integer
    @Jhem

    also I think number 2 would be all even positive integers.
    Last edited by Gab; 06-28-2015 at 06:37 PM.

  3. The Following User Says Thank You to Gab For This Useful Post:

    Jhem (06-28-2015)

  4. #18
    Threadstarter
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,391
    My Mood
    Stressed
    Quote Originally Posted by PABLO DICKBAR OPEN TOASTHOLE 4 U View Post
    E U F = Integers excluding 0

    Here's the logic:

    E contains all even integers( ..., -4, -2, 2, 4 , ...)
    F contains all odd integers(..., -3, -1, 1, 3, ...)

    E U F = (..., -2, -1, 1, 2, ...)

    I exclude 0 because I think it is neither odd or even.

    For the x|x, it means x such as x...

    so x|x is an even integer = x such as x is an even integer
    @Jhem

    also I think number 2 would be all even positive integers.
    THank you brother, Now I understand what do I need.

  5. #19
    arunforce's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    A place for amigos
    Posts
    24,700
    Reputation
    4747
    Thanks
    12,561
    My Mood
    Yeehaw
    Quote Originally Posted by PABLO DICKBAR OPEN TOASTHOLE 4 U View Post
    E U F = Integers excluding 0

    Here's the logic:

    E contains all even integers( ..., -4, -2, 2, 4 , ...)
    F contains all odd integers(..., -3, -1, 1, 3, ...)

    E U F = (..., -2, -1, 1, 2, ...)

    I exclude 0 because I think it is neither odd or even.

    For the x|x, it means x such as x...

    so x|x is an even integer = x such as x is an even integer
    @Jhem

    also I think number 2 would be all even positive integers.
    I consider 0 even. I just googled what | means and you're right.

    So basically

    E U F, where E = { 2 }, F = { 3 } => E U F = {2, 3}
    E (Upside Down U) F, where E = { 2 }, F = { 3 } => E (Upside Down U) F = {}



    BRING BACK BT, BRING BACK SAGA, BRING BACK VF, BRING BACK MPGHCRAFT, BRING BACK HABAMON


  6. #20
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    Quote Originally Posted by arunforce View Post


    I consider 0 even. I just googled what | means and you're right.

    So basically

    E U F, where E = { 2 }, F = { 3 } => E U F = {2, 3}
    E (Upside Down U) F, where E = { 2 }, F = { 3 } => E (Upside Down U) F = {}
    You can just consider U and Upside down U as bitwise AND and bitwise OR, but you compare wheter it contains something or not.

    Lets say E = {1,3,7,8} and F = {2, 3, 5}, you can transform them in bit train or w/e you call that in english, and you get
    E = {0,1,0,1,0,0,0,1,1}
    F = {0,0,1,1,0,1,0,0,0}

    where the first bit is 0 because it doesn't contain the number 0, the second one is 1 because it contains 1, the third one is 0 because E doesn't contain 2, etc...

    after that you do {0,1,0,1,0,0,0,1,1} AND {0,0,1,1,0,1,0,0,0},

    which gives you

    {0,0,0,1,0,0,0,0,0}

    Therefore E AND F = {3}

    NOw you can't do that for huuuuge arrays, but thats the logic behind these operators.
    Last edited by Gab; 06-28-2015 at 06:50 PM.

  7. The Following User Says Thank You to Gab For This Useful Post:

    Jhem (06-28-2015)

  8. #21
    Solvi's Avatar
    Join Date
    Sep 2014
    Gender
    male
    Posts
    3,268
    Reputation
    1567
    Thanks
    1,314
    Quote Originally Posted by arunforce View Post
    x|x is referring to two different integers, I believe... so:

    E = {2, 4}
    F = {1, 5}

    E U F = {1,2,4,5}
    Last edited by Sölvi; 06-28-2015 at 06:58 PM.


  9. #22
    arunforce's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    A place for amigos
    Posts
    24,700
    Reputation
    4747
    Thanks
    12,561
    My Mood
    Yeehaw
    Quote Originally Posted by PABLO DICKBAR OPEN TOASTHOLE 4 U View Post


    You can just consider U and Upside down U as bitwise AND and bitwise OR, but you compare wheter it contains something or not.

    Lets say E = {1,3,7,8} and F = {2, 3, 5}, you can transform them in bit train or w/e you call that in english, and you get
    E = {0,1,0,1,0,0,0,1,1}
    F = {0,0,1,1,0,1,0,0,0}

    where the first bit is 0 because it doesn't contain the number 0, the second one is 1 because it contains 1, the third one is 0 because E doesn't contain 2, etc...

    after that you do {0,1,0,1,0,0,0,1,1} AND {0,0,1,1,0,1,0,0,0},

    which gives you

    {0,0,0,1,0,0,0,0,0}

    Therefore E AND F = {3}

    NOw you can't do that for huuuuge arrays, but thats the logic behind these operators.
    thanks gab never took a programming course b4

    Quote Originally Posted by Sölvi View Post
    I won't RKO u if u thank this post https://www.mpgh.net/forum/showthread...1#post10663234


    - - - Updated - - -

    also the 0 even thing was for u, the rest was for him



    BRING BACK BT, BRING BACK SAGA, BRING BACK VF, BRING BACK MPGHCRAFT, BRING BACK HABAMON


  10. #23
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    Quote Originally Posted by arunforce View Post


    thanks gab never took a programming course b4



    I won't RKO u if u thank this post https://www.mpgh.net/forum/showthread...1#post10663234


    - - - Updated - - -

    also the 0 even thing was for u, the rest was for him
    I just wanted to tell you about the bit trains lol, not how to do 0 AND 1

  11. #24
    Gill Bates's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    /online
    Posts
    1,135
    Reputation
    188
    Thanks
    247
    What the fuck.
    This is Algebra 1?
    I don't remember learning any of this back in Algebra 1. Lol

  12. #25
    Cheenku's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    20
    Reputation
    30
    Thanks
    4
    Quote Originally Posted by PABLO DICKBAR OPEN TOASTHOLE 4 U View Post
    E U F = Integers excluding 0

    Here's the logic:

    E contains all even integers( ..., -4, -2, 2, 4 , ...)
    F contains all odd integers(..., -3, -1, 1, 3, ...)

    E U F = (..., -2, -1, 1, 2, ...)

    I exclude 0 because I think it is neither odd or even.

    For the x|x, it means x such as x...

    so x|x is an even integer = x such as x is an even integer
    @Jhem

    also I think number 2 would be all even positive integers.
    Actually, 0 is an even integer.

  13. #26
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    Quote Originally Posted by Cheenku View Post
    Actually, 0 is an even integer.
    Ya I wasn't sure so I just excluded it

  14. #27
    Austin's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Great White North
    Posts
    30,484
    Reputation
    6104
    Thanks
    8,326
    My Mood
    Lurking
    mfw this thread





    VIP Support // May 2011
    CF Minion // January 2012
    Newsforce // August 2012
    Minion+ // March 2013
    Moderator // August 2014
    Former Staff // January 2015
    General Minion // July 2015
    Publicist // December 2015





  15. #28
    Threadstarter
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,391
    My Mood
    Stressed
    Quote Originally Posted by Dave84311 Jr View Post
    mfw this thread

    Wh.. why??

    Thank you again. @pablo DICKBAR OPEN TOASTHOLE 4 U and @arunforce

  16. #29
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,667
    My Mood
    Breezy
    It's helps to think of the ∪ (union) and ∩ (intersection) of sets of numbers in terms of a venn diagram.

    A ∩ B = C (common elements)



    A ∪ B = C (combined elements)



    PatrickJMT does a good explanation about this (should check out his other videos on his website too):

    Last edited by master131; 06-29-2015 at 07:42 AM.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  17. The Following User Says Thank You to master131 For This Useful Post:

    Gab (06-29-2015)

  18. #30
    gregeryd's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Da US
    Posts
    78
    Reputation
    10
    Thanks
    47
    My Mood
    Breezy
    Math makes me cry :,(

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [WTS] [ADVENTURE QUEST] [LEVEL 90] [NIGHTMARE SET]
    By Plutonsvea in forum Selling Accounts/Keys/Items
    Replies: 2
    Last Post: 03-23-2013, 02:20 AM
  2. [Request] Free RuneScape account (medium-high level, no email set).
    By RicoDay in forum RuneScape Discussions
    Replies: 4
    Last Post: 08-31-2012, 05:02 PM
  3. WTB>Account level 40 Good Set up Equips + Heraldies on SEA server
    By arsevan in forum Dragon Nest Selling / Trading / Buying
    Replies: 2
    Last Post: 06-30-2012, 05:05 AM