5 details about Barbara Purcell's murder

Barbara Purcell was a 46-year-old professional therapist from Illinois, who was killed by her estranged husband Will Purcell in 2001. Her heartwrenching story will be chronicled in A Body in the Basement season 1 episode 3, which has been titled Murder On Repeat. The episode airs on Investigation Discovery on August 2, 2023, at 9 pm ET.

The official synopsis for A Body in the Basement: Murder On Repeat, released by Rotten Tomatoes, reads:

"In June 2001, just outside Rockford, Ill., a welfare check leads police to a woman brutally murdered in the basement of her once quiet suburban home; the hunt for her killer will lead detectives to a mystery that has been buried for over 14 years."

Barbara Purcell's injuries, her killer's sentence, and more details about the murder case

1) Barbara Purcell was found dead at her Winnebago County residence

A poster for A Body in the Basement (Image via Rotten Tomatoes)

Barbara Purcell was reportedly 46 years of age when her life came to an end. On June 6, 2001, she was found lying on the staircase of the basement of her house in Winnebago County, Illinois. She had several serious injuries all over her body when her remains were discovered.

The police found her after they received a call from one of her concerned colleagues as she did not show up at work. When the police reached the location, they found that the door of the basement of her house was open. This made them suspect that something was amiss. After they recovered her body and took her to the hospital, she was pronounced dead.

2) Authorities found several blunt-force injuries on the victim's head

The autopsy report of the victim revealed that Barbara Purcell suffered several head injuries. She had multiple blunt-force injuries on her head and also had a basal skull fracture.

Additionally, the 46-year-old victim had blood clots on her arms, legs, and hip, and a fresh abrasion on the right knee. After carefully observing her injuries and the condition of the staircase, authorities went on to determine that her death was not an accident.

3) Barbara was killed by her husband Will Purcell

A still of Will Purcell and Barbara Purcell (Image via IMDb)

Soon after finding her body, the police arrested the main suspect in the case, her husband Will Purcell. She was Will's second wife and their marriage took a turn when Will suspected that she was having an affair and got violent. Cinemaholic reported that Barbara then got a protection order from authorities, which barred Will from meeting her under any circumstances.

However, on, June 6, he pushed her down the staircase of the basement in a fit of rage, which led to her death.

4) During the trial, Will Purcell was found guilty of first-degree murder

After Will Purcell was arrested by authorities, he tried to defend himself. He alleged that his wife's death was an accident and mentioned that he acted in self-defense. However, during the trial, many witnesses came forward and testified against Will.

Thus, after enough evidence was collected against him, he was found guilty by the jury on three counts of first-degree murder.

5) Barbara's killer was sentenced to life in prison

A still of Willard Henry "Will" Purcell (Image via Find a Grave)

Will Purcell was sentenced to life in prison by the court and was held at the Menard Correctional Center, Illinois. He died while serving his sentence at the age of 69 on September 12, 2015. He breathed his last after suffering from metastatic lung cancer, pneumonia, and respiratory failure.

Watch A Body in the Basement season 1 episode 3, which airs on Investigation Discovery, on August 2, 2023, at 9 pm ET.

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1612748, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1612748); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1612748) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1612748) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKifpXqkwcutrKudX2p6pbHTmqClq12XrrOuwKuYZqilp7CmuMtmqmalpaexpr4%3D

You Might Also Like