Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Why it works  
1 comment  




2 Typo  





3 RAID parity blocks  
3 comments  




4 Should there be an error in External links section?  
1 comment  




5 Vandalism from 25. April 2008 needs to be undone  
1 comment  




6 SPELLING  
1 comment  




7 Final Error Correction Example Corrected  
1 comment  




8 merging with multidimensional parity-check code  
2 comments  




9 Error in "Error Detection" section beneath 3rd box?  
2 comments  




10 useful to explicitly state that ^ is the bitwise XOR operator  
1 comment  




11 "Even parity" listed at Redirects for discussion  
1 comment  




12 Typo?  
1 comment  













Talk:Parity bit




Page contents not supported in other languages.  









Article
Talk
 

















Read
Edit
Add topic
View history
 








Tools
   


Actions  



Read
Edit
Add topic
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Get shortened URL
Download QR code
 




Print/export  



Download as PDF
Printable version
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 


Why it works[edit]

Can someone explain why the parity bit works with XOR? Which property of XOR makes this work? http://en.wikipedia.org/wiki/Exclusive_or#Properties —Preceding unsigned comment added by 202.89.161.163 (talk) 05:34, 14 September 2009 (UTC)[reply]

Typo[edit]

4th paragraph after the word caches should be instruction and not instructopn? Didnt want to fix the typo in the even that it was not actually a typo -Brett

For clarity, please define the term "stop bit", and elaborate further on the uses of parity bits in redundancy checking.

Yep please define!Medscin 17:01, 2 January 2006 (UTC)

For further clarity: Typical options for parity are: None - no parity bit; Mark - parity bit always 1; Space - parity bit always 0; Odd; Even. The question is, what exactly is meant by odd or even parity, an example please? Martin 2006-02-10.

RAID parity blocks[edit]

I have places tags to merge-out the section RAID parity blocks from this article, and move it to RAID. I think this should be included on the same page as RAID, as it pertains only to raid, and should only be referenced from the Parity bit article for further reading. The7thone1188 21:29, 3 June 2006 (UTC)[reply]

.

I have moved the section today. The7thone1188 03:51, 11 June 2006 (UTC)[reply]

Why did this Parity Block section come back? I was reading this page today and saw the Parity Block section here and it didn't seem to belong. Checking the history it seems like it was at one time moved out of here and into the RAID article. It's still in the RAID article but also back here again too. I would like to remove it again but before I do I'd like to know why it came back. —The preceding unsigned comment was added by 154.20.81.70 (talk) 07:59, 6 December 2006 (UTC).[reply]

Should there be an error in External links section?[edit]

The first reference in External links section is "Quick way to get the odd parity of an integer"

[1]. IMHO the algorithm describes even parity calculation.

Consider the code:

int uint16_parity( uint16 x ) {

 x = x ^ (x >> 8);
 x = x ^ (x >> 4);
 x = x ^ (x >> 2);
 x = x ^ (x >> 1);
 return x & 1;

}

Given input x = 0x0001 the result would be 1. Stage by stage:

 x = x ^ (x >> 8);  // 0x0001 ^ 0x00 = 0x01
 x = x ^ (x >> 4);  // 0x01 ^ 0x0 = 0x1 
 x = x ^ (x >> 2);  // 0001b ^ 00b = 01b
 x = x ^ (x >> 1);  // 01b ^ 0b = 1b 

So, parity bit is 1. According to introductory part, "An even parity bit is set to 1 if the number of ones in a given set of bits is odd (making the total number of ones even)." Rrlagic 10:02, 11 May 2007 (UTC)[reply]

Vandalism from 25. April 2008 needs to be undone[edit]

Is there any tool that automates (or half-automates) undoing old vandalism, which was followed by a bunch of valid commits? I'm too lazy to do it by hand. -- 212.63.43.180 (talk) 18:00, 26 May 2008 (UTC)[reply]

SPELLING

Im sorry but whoever created this article needs to learn how to spell, i corrected 1 word please see below:

lel - Level

SPELLING[edit]

Im Sorry but whoever created this article needs to learn how to spell, no offence, i corrected 1 word in there:

lel- Level

Sorry but this had to be done, it was embarrassing.

Now someone changed it back...:( —Preceding unsigned comment added by 80.229.71.113 (talk) 07:40, 16 June 2008 (UTC)[reply]

Final Error Correction Example Corrected[edit]

I made a change to the final example in the error correction section. Previously the example demonstrating two errors being missed because of matching parity bits. It was formerly:

B computes overall parity: 1^1^0^1^1 = 1

and I switched it to

B computes overall parity: 1^1^0^1^1 = 0

which is correct and makes the example make sense.

Atduskgreg (talk) 03:31, 29 March 2009 (UTC)[reply]

merging with multidimensional parity-check code[edit]

all error correcting codes use parity bits so I dont see any really good reason to merge with just this one. I'll certainly add a link though. further, 'multidimensional parity-check code' is a very broad subject with many variations. the article could well be expanded greatly. (but thats beyond my skill level). merging it with 'parity bit' would make that impossible. I think that, generally speaking, too many articles on wikipedia get merged. just-emery (talk) 17:19, 30 May 2009 (UTC)[reply]

I think you're probably right. I've removed the merge tags. Oli Filth(talk|contribs) 17:40, 30 May 2009 (UTC)[reply]

Error in "Error Detection" section beneath 3rd box?[edit]

I'm new to all this, but I think this is incorrect:

Current text: "B's calculated parity value (1) does not match the parity bit (0) in its received value, indicating the bit error."

I believe it should read something like: "B's calculated parity value (1) indicates a bit error, when using even parity. (When using odd parity, B calculating a (0) will indicate an error.)"

Rationale (for EVEN parity mode): If the desired transmission has an odd number of 1's, A will assign Parity Bit (PB) = 1. Thus, once the PB is appended, B will calculate 0 (if the transmission is correct). Conversely, if the desired transmission has an even number of 1s, PB=0 and B will AGAIN calculate PB=0 (if the transmission is correct). Ie, 0=Correct; 1=Error. Matching is irrelevant.

Using the ODD parity mode, the situation is reversed. Appending the PB will lead B always to calculate a 1, if the transmission is correct, independent of any matching.

Someone more experienced can either make this change, or send me some confirmation and I'll make it myself. Tnx. EJR (talk) 09:01, 31 October 2010 (UTC)[reply]

I suspect that the confusion lies in the use of the term match. In the example, as far as receiver B is concerned, the received message must contain an even-number of one-state bits but B counts three one-state bits. Three is an odd number so B knows that the message has been corrupted though not how the message has been corrupted. B only knows that there is an error because, by prior agreement between sender and receiver, the communication channel has been configured to use even parity messages; not because B's calculated parity bit doesn't match the transmitted parity bit. I've modified the text to delete the reference to match. —Preceding unsigned comment added by Trappist the monk (talkcontribs) 18:06, 31 October 2010 (UTC)[reply]

useful to explicitly state that ^ is the bitwise XOR operator[edit]

A very helpful article.

I think it would be useful for the Error Detection examples to explicitly state that ^ is the bitwise XOR operator rather than exponentiation.

The example uses this equation: 1^0^0^1 = 0 The left hand side equals 0 if ^ is bitwise XOR (as ^ is used in Python). The left hand side equals 1 if ^ is exponentiation (as ^ is used in Octave).

Interpreting this example as equal to 1, causes a misunderstanding cascade regarding this topic - I myself initially read the example this way.

To be fair, "Consider the following example with a transmission error in the second bit using XOR:" is written just above the second table, so I'm not suggesting incompleteness, just where the author can be misunderstood. We've seen 2^3 = 8, etc. so many times. Our attention is drawn within the table to the equations. I think it would be very welcome by readers (especially those new to the topic, as am I) to state the disambiguation explicitly within the table itself.

This is my first time here, so forgive me if I don't feel comfortable making the edit myself. If the author agrees, and if nobody objects, then this small addition should help people follow the example as intended.

Rodd.rev (talk) 18:34, 17 March 2015 (UTC)[reply]

"Even parity" listed at Redirects for discussion[edit]

Information icon A discussion is taking place to address the redirect Even parity. The discussion will occur at Wikipedia:Redirects for discussion/Log/2020 June 3#Even parity until a consensus is reached, and readers of this page are welcome to contribute to the discussion. 1234qwer1234qwer4 (talk) 11:48, 3 June 2020 (UTC)[reply]

Typo?[edit]

What does it mean "Parity number 31668" in the first paragraph? Is it a typo? Jrock212 (talk) 12:22, 10 November 2023 (UTC)[reply]


Retrieved from "https://en.wikipedia.org/w/index.php?title=Talk:Parity_bit&oldid=1201987200"

Categories: 
Start-Class Computing articles
Unknown-importance Computing articles
All Computing articles
 



This page was last edited on 1 February 2024, at 20:10 (UTC).

Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



Privacy policy

About Wikipedia

Disclaimers

Contact Wikipedia

Code of Conduct

Developers

Statistics

Cookie statement

Mobile view



Wikimedia Foundation
Powered by MediaWiki