Paraphrase Plagiarism
Definition
Reproducing the ideas and structure of a source while replacing most of the wording, making character-level detection ineffective. Requires semantic rather than string-based comparison.
- Method
- Reword source while keeping ideas and structure
- Defeats
- Character/string-level detection
- Required detection approach
- Semantic comparison
- Domain
- Text reuse and academic/document forensics
Common questions
Why can't a simple string-matching tool catch paraphrase plagiarism?+
String matching looks for shared sequences of characters or words, but a paraphrased passage may share almost no exact wording with its source while following the same argument structure and sequence of points, so the tool finds nothing to flag.
What signals do semantic detection methods look for instead?+
They compare meaning-level representations of text, such as sentence embeddings or topic structure, looking for passages that convey the same propositions in the same order as a source document even when the surface vocabulary differs substantially.
Related terms
- Mosaic Plagiarism
- Borrowing phrases and expressions from a source and embedding them across new sentences, so no single passage is a direct copy but...
- Sentence Embedding
- A neural representation of a sentence as a dense numeric vector, trained so that semantically similar sentences land near each other in...
- Substantial Similarity
- The legal standard in copyright infringement: whether the protected expression in one work is reproduced in another to a degree that a...
- Translation Plagiarism
- Copying from a source in another language and rendering it in the target language. Defeats monolingual detection entirely and requires cross-lingual semantic...
- Verbatim Plagiarism
- Copying text word-for-word from a source without attribution. The simplest form to detect computationally because character-level matching directly finds the copied string.