Match Details

Fixture: (1) Iga Swiatek vs Qinwen Zheng

Tournament: Western & Southern Open 2023

Round: Third Round (Round of 16)

Venue: Cincinnati, US

Category: ATP Masters 1000

Surface:Hard

Prize money: $6,600,000

Live telecast: USA - Tennis Channel | Canada - TSN | UK - Amazon Prime Video | India - Sony Liv

Iga Swiatek vs Qinwen Zheng preview

World No. 1 Iga Swiatek takes on promising talent Qinwen Zheng for a place in the quarterfinals at the 2023 Cincinnati Open.

The reigning French Open and US Open champion is in good form in 2023, accumulating a 51-8 win-loss record on the Hologic WTA tour. Although the Pole had an unceremonious campaign at Wimbledon, she was able to regroup in front of her home crowd at the 2023 Warsaw Open, not dropping a single set en route to the title.

Swiatek was denied in the semifinals of last week's Canadian Open, though, losing to then World No. 4 Jessica Pegula 6-2, 6-7(4), 6-4. Looking to redeem herself in Cincinnati, she blitzed past USA's Danielle Collins for the loss of just one game in her opener.

Qinwen Zheng, meanwhile, has registered a respectable 25-15 win-loss record in 2023. The highlights of her season include winning the title at the Palermo Open and reaching the semifinals of the WTA 500 event in Abu Dhabi (where she upset top players like Daria Kasatkina and Jelena Ostapenko).

While the Chinese lost to eventual finalist Liudmila Samsonova in the second round of the WTA 1000 event in Montreal last week, she has managed to improve her performance in Cincinnati.

After beating Belarus' Aliaksandra Sasnovich in her first match, Zheng played some sharp tennis in the second round to thwart former World No. 1 Venus Williams' comeback. The Chinese defeated her much more experienced opponent by a lopsided scoreline of 1-6, 6-2, 6-1 to reach the third round.

Iga Swiatek vs Qinwen Zheng head-to-head

Iga Swiatek leads Qinwen Zheng 3-0 in their head-to-head meetings so far. The three-time Major champion defeated the Chinese from a set down at last year's Roland Garros quarterfinals and has also beaten her in their only hardcourt match at the 2022 San Diego Open.

Iga Swiatek vs Qinwen Zheng odds

PlayerMoneylinehandicap BetsTotal Games (Over and Under)
Iga Swiatek-1000-1.5 (-225)Over 19.5 (-105)
Qinwen Zheng+550+1.5 (-160)Under 19.5 (-135)

All odds are sourced from BETMGM.

Iga Swiatek vs Qinwen Zheng prediction

Swiatek is currently the most well-balanced player on the Hologic WTA tour. The Pole not only possesses super-precise groundstrokes but also has great footwork and a tactical understanding of the game. One of her weak points, though, happens to be her underpowered serve.

Qinwen Zheng, on the other hand, is slightly more aggressive from the baseline. The Chinese imparts great power and depth on her groundstrokes and possesses a reliable first serve as well. However, these attributes do not necessarily mean that she has a tenable chance to beat the World No. 1.

Iga Swiatek hits a forehand at the 2023 Canadian Open
Iga Swiatek hits a forehand at the 2023 Canadian Open

Over the last two years, Swiatek has made it abundantly clear that she can outmatch any player from the baseline thanks to the width that she creates. The Pole is capable of hitting some great angles and is adept at approaching the net to put pressure on her opponents during crucial points.

For what it's worth, the 20-year-old Chinese doesn't possess great tactical aptitude and fitness yet. In that context, it will be hard for her to outmatch her more experienced opponent on the hardcourts of Cincinnati.

Pick: Iga Swiatek in two tight sets.

Quick Links

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": 1631342, "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(1631342); 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(1631342) >= 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(1631342) .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 }); })();